12月23号学习总结

数值有 常量变量   字面量

常量是固定值用final修饰不带final是变量个更改

每个变量必须属于一种类型
整型的数据类型是 byte short int long

小数点的数据类型是 float double ,float 后面的字面量必须加f

boolean数据类型 true 正确 false 错误

整型运算得整数,%是得余数

整型运算结果如果用byte short需要强制更改格式

字符串用String 某值 = “ ”; 输入

int l= str.length() 用于查看字符串长度    括号代表方法

if  else  条件判断语句      不符合if 走 else 等号要用双等号 比较区分大小写 小写比大写大

if else例子

public class ace {

public static void main(String[] args) {

String str1 = "aace";

String str2 = "Aace";

int b = str1.compareTo(str2);

if (b<0) {System.out.print("str1xiao");

}else {System.out.print("str1da");

}

}

}


int l = 字符串1.compareTo(字符串2)是字符串比较 比较结果为int型,compareToIgnoreCase 忽略大小写比较

boolean l = 字符串1.equals(字符串2);    是比较是否相等

int l = 字符串.indexOf(" ");查询字符里面数值在第几位 0是第一位 只返回第一个出现的 没找到返回-1 空格算1位

boolean l = 字符串.startsWith(" "); 判断是从前面开始  endsWith判断从后面开始


12月23号学习总结_第1张图片

你可能感兴趣的:(12月23号学习总结)