标签:code als bool byte dem short 建议 double false
public class Demo01 {
public static void main(String[] args) {
String 英雄联盟 ="青铜";
//String 英雄联盟 ="青铜";
System.out.println(英雄联盟);
//建议多用用英文命名,其他的low
//对大小写敏感
String Man = "xjh";
String man = "xjh";
String Ahello = "xjh";
String hello = "xjh";
String $hello = "xjh";
String _hello = "xjh";
//不能以数字,#,*开头
//String 1hello = "xjh";
//String #hello = "xjh";
//String *hello = "xjh";
public class Demo02 {
public static void main(String[] args) {
//八大基本类型
//整数
int num1 = 10; //最常用
byte num2 = 20;
short num3 = 30;
long num4 = 30l; //long类型要在数字后加上l
//小数:浮点数
float num5 = 50.1F; //float类型要在数字后加上F
double num6 = 3.141592653589793238462643;
//字符
char name = ‘国‘;
//字符串,String不是关键字,是类
//String namea ="张三";
//布尔值: 是非
boolean flag = true;
//boolean flag = false;
}
}
标签:code als bool byte dem short 建议 double false
原文地址:https://www.cnblogs.com/xuxuyouqinfeng/p/14374560.html