[Java in NetBeans] Lesson 08. If: conditional statement
這個課程的參考視訊和圖片來自youtube。
主要學到的知識點有:
1. If-else statement
if (x > 5) { System.out.println("Input x is bigger than 5. "); } else { System.out.println("Input x is not bigger than 5. "); }
2. Logical operators
- AND &&
- OR ||
- NOT !
相關推薦
[Java in NetBeans] Lesson 08. If: conditional statement
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: 1. If-else statement if (x > 5) { System.out.println("Input x is bigger than 5. "); } else {
[Java in NetBeans] Lesson 09. Switch / If-Else Ladder
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: 1. Nested If-else statement (if-else ladder) /** * 90 and above ==> A * 80 up to 90 ==> B *
[Java in NetBeans] Lesson 02. Variables, Data Types and Assignment.
這個課程的參考視訊在youtube。 主要學到的知識點有: Data Type: int, char, String, double, boolean. When into printf, int (%d), char (%c), String (%s),
[Java in NetBeans] Lesson 01. Java Programming Basics
這個課程的參考視訊在youtube。 主要學到的知識點有: Create new project, choose Java Application. one .jar file/ package(.jar name with the same as package),
[Java in NetBeans] Lesson 04. Class / Objects
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: Class: Blueprint for an object. (e.g. dog is a class) Object: custom variables contain state an
[Java in NetBeans] Lesson 05. Method/function
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: Define a method:(motivation: write one time, but use it many times) Access: public, private, p
[Java in NetBeans] Lesson 07. JavaDoc and Unit Tests
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: 1. organize code into packages Create a package if want to make the jar file reusable for other projects
[Java in NetBeans] Lesson 06. Custom classes
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: Constructors: A special method called when an object of the class is created property pattern and en
[Java in NetBeans] Lesson 12. Arrays
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: 1. Array: container that holds a fixed number of values of the same type, can be access by index. Cre
[Java in NetBeans] Lesson 11. While Loops
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有:(the same use in C/C++) 1. while loop while(i < max){} will keep executing if i < max is true, o
[Java in NetBeans] Lesson 10. For Loops
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有:(the same use in C/C++) 1. x++, x += 1; similar x--, x -= 1; x *= 2; x /= 2. x++ : Plus 1 after
[Java in NetBeans] Lesson 14. ArrayList and Collections
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: 1. Collection: container that contians objects. 2. Difference between Collection and Array&nb
[Java in NetBeans] Lesson 13. Multidimensional Arrays
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: 1. Multidimensional Array: Array that has more than one dimension. Create a array with two dimen
[Java in NetBeans] Lesson 15. Sorting and Searching.
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: Build in functions in java.util.Collections Need to implement a comparator - a special class which re
[Java in NetBeans] Lesson 16. Exceptions.
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: We want to handle the bad Error. (e.g bad input / bugs in program) Error: a type of Excepti
[Java in NetBeans] Lesson 17. File Input/Output.
這個課程的參考視訊和圖片來自youtube。 主要學到的知識點有: We want to handle the bad Error. (e.g bad input / bugs in program) 1. File() : A Java representation of
Java中條件語句和if-else的嵌套原則
java;嵌套語句;if-else在Java中,條件語句的格式為:if(condition)Statement在此時的條件語句中的條件是需要用括號把它括起來。其實,Java中的條件語句和C/C++中的是一樣的。而Java常常希望在某個條件為真的時候執行多條語句。此時,我們就會引入一個概念,那就是“塊模塊(bl
java 安裝 netbeans IDE 中文版
for href htm ans .html ref form https .org https://netbeans.org/downloads/start.html?platform=windows&lang=zh_CN&option=javaeejava 安裝 net
java初學 流程控制語句 if…else switch ...
順序語句 語句:使用分號分隔的程式碼稱作為一個語句。 注意:沒有寫任何程式碼只是一個分號的時候,也是一條語句,稱作空語句。 順序語句就是按照從上往下的順序執行的語句。 判斷(if…else) 在我們找工作的過程中,要求兩年工
Java EE Web部分--08.Maven
一、Maven概述 1、Maven的概述 Maven是專案物件模型(Project object model)POM物件模型。每個maven工程 中都有一個pom.xml檔案、定義工程所依賴的jar包、本工程的座標、打包執行方式。 依賴管理系統(基礎核心 )。maven