-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Geng geng geng #255
base: master
Are you sure you want to change the base?
Geng geng geng #255
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
package com.github.hcsp.encapsulation; | ||
|
||
import com.alibaba.fastjson.JSON; | ||
|
||
public class Main { | ||
/* | ||
假设你正在为学校开发一个学生分数记录系统 | ||
|
@@ -26,7 +28,16 @@ public static void main(String[] args) { | |
student = deserialize(json); | ||
} | ||
// 序列化:将Student类转换成JSON字符串 | ||
public static String serialize(Student student) {} | ||
public static String serialize(Student student) { | ||
String jsonToString = JSON.toJSONString(student); | ||
return jsonToString; | ||
|
||
|
||
} | ||
|
||
// 反序列化:将JSON字符串转换成Student对象 | ||
public static Student deserialize(String json) {} | ||
public static Student deserialize(String json) { | ||
Student stringToJson = JSON.parseObject(json,Student.class); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
return stringToJson; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,45 @@ public class Student { | |
|
||
/** 分数 */ | ||
private int score; | ||
|
||
private boolean Fail; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
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() { | ||
if (score < 60) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
return true; | ||
} else { | ||
return false; | ||
} | ||
|
||
|
||
|
||
} | ||
|
||
public void setFail(boolean fail) { | ||
Fail = fail; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
用一个空格分隔非空白字符。