Skip to content

Commit

Permalink
Revert "JSON序列化/反序列化实战 (#203)"
Browse files Browse the repository at this point in the history
This reverts commit c9eaeb5.
  • Loading branch information
hcsp-bot committed Aug 19, 2020
1 parent c9eaeb5 commit ec4c36b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 47 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.58</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
12 changes: 2 additions & 10 deletions src/main/java/com/github/hcsp/encapsulation/Main.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.github.hcsp.encapsulation;

import com.alibaba.fastjson.JSON;

public class Main {
/*
假设你正在为学校开发一个学生分数记录系统
Expand All @@ -27,14 +25,8 @@ public static void main(String[] args) {

student = deserialize(json);
}

// 序列化:将Student类转换成JSON字符串
public static String serialize(Student student) {
return JSON.toJSONString(student);
}

public static String serialize(Student student) {}
// 反序列化:将JSON字符串转换成Student对象
public static Student deserialize(String json) {
return JSON.parseObject(json, Student.class);
}
public static Student deserialize(String json) {}
}
40 changes: 3 additions & 37 deletions src/main/java/com/github/hcsp/encapsulation/Student.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,46 +2,12 @@

public class Student {
// 请按照Main类的要求,补全本类
/**
* 姓名
*/
/** 姓名 */
private String name;

/**
* 是否重考。true为重考,falase为非重考。
*/
/** 是否重考。true为重考,falase为非重考。 */
private boolean retakingExam;

/**
* 分数
*/
/** 分数 */
private int score;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public boolean isRetakingExam() {
return retakingExam;
}

public void setRetakingExam(boolean retakingExam) {
this.retakingExam = retakingExam;
}

public int getScore() {
return score;
}

public void setScore(int score) {
this.score = score;
}

public boolean isFail() {
return score < 60;
}
}

0 comments on commit ec4c36b

Please sign in to comment.