-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontent.json
More file actions
105 lines (105 loc) · 2.81 KB
/
content.json
File metadata and controls
105 lines (105 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "面向对象编程",
"desc": "这个教程主要配合Python介绍面向对象编程的理论知识概念,不管以后要学习哪一个面向对象语言,学习这个教程都是很有用的。",
"keywords": ["编程", "基础"],
"cover": "cover.jpg",
"tags": ["编程", "基础", "入门"],
"lang": "python",
"chapters": [
{
"name": "类和对象",
"content": "Chapter1/Chapter1.md",
"sections": [
{"name":"什么是类"},
{"name":"属性和方法"},
{"name":"对象和对象类型"},
{"name":"作用域和三个关键字"},
{"name":"this关键字"},
{"name":"小练习"}
]
},
{
"name": "类进阶",
"content": "Chapter2/Chapter2.md",
"sections": [
{"name":"构造方法"},
{"name":"访问器和更改器"},
{"name":"方法重载"},
{"name":"Javadoc注释"},
{"name":"小练习"}
]
},
{
"name": "引用",
"content": "Chapter3/Chapter3.md",
"sections": [
{"name":"原始类型和引用类型"},
{"name":"空引用"},
{"name":"小练习"}
]
},
{
"name": "继承",
"content": "Chapter4/Chapter4.md",
"sections": [
{"name":"父类和子类的关系"},
{"name":"实现继承"},
{"name":"方法重写"},
{"name":"抽象类"},
{"name":"小练习"}
]
},
{
"name": "多态",
"content": "Chapter5/Chapter5.md",
"sections": [
{"name":"初识多态"},
{"name":"再谈多态"},
{"name":"类型转换"},
{"name":"动态绑定"},
{"name":"使用“super”调用父类"},
{"name":"“super”与构造方法"},
{"name":"小练习"}
]
},
{
"name": "接口",
"content": "Chapter6/Chapter6.md",
"sections": [
{"name":"接口是什么"},
{"name":"定义接口"},
{"name":"实现接口"},
{"name":"抽象类与接口的区别"},
{"name":"小练习"}
]
},
{
"name": "最终超类——Object类",
"content": "Chapter7/Chapter7.md",
"sections": [
{"name":"Object类是什么"},
{"name":"Object类里的方法"},
{"name":"小练习"}
]
},
{
"name": "一个特殊而又重要的类——String类",
"content": "Chapter8/Chapter8.md",
"sections": [
{"name":"String对象的创建和更新"},
{"name":"String类的方法"},
{"name":"String类的比较"},
{"name":"小练习"}
]
},
{
"name": "程序分析与设计",
"content": "Chapter9/Chapter9.md",
"sections": [
{"name":"瀑布模型"},
{"name":"面向对象程序设计"},
{"name":"小练习"}
]
}
]
}