
java
文章平均质量分 85
UoM_XiaoShuaiShuai
希望有一天,能够成为肖奈一样的大神!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Java - 编程规范(Programming Convention)
Java - 编程规范(Programming Convention)常量命名(Naming Contants) Spell named constants using all uppercase letters with the underscore used to seperate “words”. For example,public static final double INTREST_原创 2017-07-02 10:59:33 · 1008 阅读 · 0 评论 -
Java - 字符串(String)
Java - 字符串(String)There is no primitive type for strings in Java. But there is a class called String used to store and process strings. For example,String s = "I fall in love with ZL";字符串的连接(Concatenat原创 2017-07-01 18:45:34 · 362 阅读 · 0 评论 -
Java - 表达式和赋值语句(Expressions & Assignment Statements)
Java - 表达式和赋值语句(Expressions & Assignment Statements)标识符(Identifier) The name of a variable(or other items you might define like method names, class names, etc) is called an identifier.An identifier ca原创 2017-07-01 16:09:12 · 1615 阅读 · 0 评论 -
Java - Introduction
Java - IntroductionWhat is Java? Java is well-known as a programming language for Internet applications. Why is the language named “Java”? One believable story is that the name was thought by a membe原创 2017-06-28 15:41:18 · 743 阅读 · 0 评论 -
JSON
outJSONWhat is JSON? Here is a JSON.{ "name": "Shuai Wang", "id": "1240031", "subject": [ "Algorithm", "Internet", "Database", "Java" ], "grade": 72.5, "has_girlfriend": tr原创 2017-07-03 12:55:02 · 499 阅读 · 0 评论 -
GSON
What is GSON? A Java serialization/deserialization library to convert Java Objects into JSON and back is designed by google.(Check open source GSON project)A GSON Project I wrote a GSON project.(Chec原创 2017-07-03 18:35:21 · 488 阅读 · 0 评论