一、命名规则
1.项目名:首字母大写,字母下划线
2.包名:字母小写
3.文件名:首字母大写
二、输出方法
//alt+? 提示
package coms_neusoft_study;
public class Study01 {
//主方法,程序入口执行程序
public static void main(String[] args) {
//输出语句
//换行输出
System.out.println("hello word");
System.out.println("hello 换行输出");
//不换行输出
System.out.print("hello word");
System.out.print("hello 不换行输出");
}
}
hello word
hello 换行输出
hello wordhello 不换行输出
三、优先级运算符
算数运算符 > 关系运算符 > 逻辑运算符 > 赋值运算符
*特殊:括号优先级最高
四、数据类型转换
1、自动类型转换:
条件:俩个类型兼容;目标类型的取值范围要大于原类型;
2、强制类型转换、
条件:俩种不就兼容;目标取值类型小于原类型
*buty、short、char之间不会转化,三者计算首先会转换为int类型
控制台输入值
Scanner sc =new Scanner(System.in);//控制台输入
System.out.println("输入数字");
int x=sc.nextInt();//接收控制台输入的值
sc.close(),关闭接收值