Skip to content

Commit

Permalink
Alex2 (#205)
Browse files Browse the repository at this point in the history
Alex2 (#205)
  • Loading branch information
IveBecomeSoNumb authored Aug 24, 2020
1 parent ec4c36b commit 2796aeb
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +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
9 changes: 7 additions & 2 deletions src/main/java/com/github/hcsp/encapsulation/Main.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package com.github.hcsp.encapsulation;
import com.alibaba.fastjson.JSON;

public class Main {
/*
Expand Down Expand Up @@ -26,7 +27,11 @@ public static void main(String[] args) {
student = deserialize(json);
}
// 序列化:将Student类转换成JSON字符串
public static String serialize(Student student) {}
public static String serialize(Student student) {
return JSON.toJSONString(student);
}
// 反序列化:将JSON字符串转换成Student对象
public static Student deserialize(String json) {}
public static Student deserialize(String json) {
return JSON.parseObject(json, Student.class);
}
}
38 changes: 38 additions & 0 deletions src/main/java/com/github/hcsp/encapsulation/Student.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,42 @@ public class Student {

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

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 fail;
}

public void setFail(boolean fail) {
if (score >= 60) {
this.fail = false;
}else{
this.fail = true;
}

}
}

0 comments on commit 2796aeb

Please sign in to comment.