摘要:
public class Demo06 { public static void main(String[] args) { //int a,b,c; //int a = 1;b = 2;c = 3;//程序的可读性 String name = "yangyue"; char x = 'Y'; do 阅读全文
摘要:
类型转换 import com.sun.management.VMOption; public class Demo03 { public static void main(String[] args) { // ①整数扩展: // 进制 二进制0b 十进制 八进制0 十六进制0x int i = 阅读全文
摘要:
数据类型 字节 public class Demo02 { public static void main(String[] args) { String a = "hello"; int num = 10; System.out.println(a); System.out.println(num 阅读全文