代码改变世界

NetBeans issues and solutions.(build.xml and debug multiple projects)

2019-01-23 23:30 by Johnson_强生仔仔, 326 阅读, 0 推荐, 收藏, 编辑
摘要:Solution: Reference is here. 1) 2. Copy a file to another directory when building the .jar in NetBeans Solution: Reference is here. 1) 3. How NetBeans 阅读全文

[Java in NetBeans] Lesson 17. File Input/Output.

2019-01-01 05:21 by Johnson_强生仔仔, 188 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: We want to handle the bad Error. (e.g bad input / bugs in program) 1. File() : A Java representation of a file. 2. P 阅读全文

[Java in NetBeans] Lesson 16. Exceptions.

2019-01-01 03:55 by Johnson_强生仔仔, 231 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: We want to handle the bad Error. (e.g bad input / bugs in program) Error: a type of Exception e.g File I/O; User Inp 阅读全文

[Java in NetBeans] Lesson 15. Sorting and Searching.

2019-01-01 03:41 by Johnson_强生仔仔, 295 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: Build in functions in java.util.Collections Need to implement a comparator - a special class which returns an intege 阅读全文

[Java in NetBeans] Lesson 14. ArrayList and Collections

2018-12-20 04:54 by Johnson_强生仔仔, 224 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: 1. Collection: container that contians objects. 2. Difference between Collection and Array note: int => Integer doub 阅读全文

[Java in NetBeans] Lesson 13. Multidimensional Arrays

2018-12-20 03:10 by Johnson_强生仔仔, 279 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: 1. Multidimensional Array: Array that has more than one dimension. Create a array with two dimensions. 阅读全文

[Java in NetBeans] Lesson 12. Arrays

2018-12-20 02:58 by Johnson_强生仔仔, 200 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: 1. Array: container that holds a fixed number of values of the same type, can be access by index. Create a string ar 阅读全文

[Java in NetBeans] Lesson 11. While Loops

2018-12-20 02:30 by Johnson_强生仔仔, 185 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有:(the same use in C/C++) 1. while loop while(i < max){} will keep executing if i < max is true, otherwise will jump ou 阅读全文

[Java in NetBeans] Lesson 10. For Loops

2018-12-20 02:09 by Johnson_强生仔仔, 245 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有:(the same use in C/C++) 1. x++, x += 1; similar x--, x -= 1; x *= 2; x /= 2. x++ : Plus 1 after the line is executed. 阅读全文

[Java in NetBeans] Lesson 09. Switch / If-Else Ladder

2018-12-14 05:44 by Johnson_强生仔仔, 254 阅读, 0 推荐, 收藏, 编辑
摘要:这个课程的参考视频和图片来自youtube。 主要学到的知识点有: 1. Nested If-else statement (if-else ladder) 2. Switch 3. Enumerations An enumeration custom data type that enables 阅读全文
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 39 下一页