1.什么是关键字?
- SUN在开发Java语言的时候,提前制定好的一些具有特定含义的字符序列。
- 在语言中具有特殊含义的单词,这些单词构成java程序的骨架,这些单词是需要记住的,不能随意编写,包括大小写。
2.关键字在java语言中全部小写
3.关键字在EditPlus工具中的颜色是蓝色高亮
4.常见的关键字有哪些?
public
class
static
void
if
for
while
do
default
byte
short
int
long
float
double
boolean
char
private
protected
switch
true
false
throw
throws
try
catch
......
* 提醒:关键字不需要单独拿出来记忆,编写程序的过程中记忆。
*/
public class KeywordsTest01
{
public static void main(String[] args){
}
}