Java Programming Masterclass 学习笔记(一)
目录
摘要
Java Programming Masterclass 学习笔记(一)。
Section 1: Getting Started
Section 2: Programming Tools Setup
Section 3: First Steps
Hello World
|
|
Variables
Keyword
- A keyword is any one of a number of reserved words, that have a predefined meaning in the Java language.
- In Java syntax, all code is case-sensitive, and this includes keywords. As we’ll soon see, an int, all in lowercase, is not the same as Int, with a capital I. Here, an int, (all in lowercase) is a keyword in Java.