Skip to content
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

润色前言 #5

Merged
merged 1 commit into from
Nov 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,25 @@

## 前言

Java入门代码用中文写更能被新手理解, 可惜没有看到类似教程. 本作纯属抛砖引玉, 希望各位多指出错误, 欢迎批评/意见/建议.
Java入门代码用中文写(举例如下)更能被新手理解. 由于至今没有看到类似教程, 在此抛砖引玉. 欢迎指正/批评/意见/建议.

```java
public class 小孩类 extends 人类 {
String 想做的事 = "大人的事";

public 小孩类(String 姓名, int 年龄) {
super(姓名, 年龄);
}

public void 长大() {
System.out.println("我要做" + 想做的事);
}
}
```

编程语言的语法是最机械的, 在阅读过程中, 请尽量关注于程序做了些什么, 而一些语法细节可以暂时忽略. 入门之后, 在接下去的写和读代码过程中, 语法自然会熟练起来.

每一讲建议时间30分钟左右. 如果卡住(比如超过一小时), 请在代码库开issue. 目的是让总时间控制在8小时左右, 让"一天入门"更符合实际.
每一讲建议时间30分钟左右. 如果卡住(比如超过一小时), 欢迎在代码库[发问](https://github.com/program-in-chinese/java_in_hours_chn/issues). 目的是让总时间控制在8小时左右, 让"一天入门"更符合实际.

## 目录
[准备编程](#%E4%B8%80-%E5%87%86%E5%A4%87%E7%BC%96%E7%A8%8B)
Expand Down