Skip to content

Commit

Permalink
Merge pull request #5 from testacount1/patch-1
Browse files Browse the repository at this point in the history
润色前言
  • Loading branch information
nobodxbodon authored Nov 18, 2017
2 parents e2056d6 + 7cc1624 commit b7261eb
Showing 1 changed file with 16 additions and 2 deletions.
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

0 comments on commit b7261eb

Please sign in to comment.