方法:提供信息 函数去处理 给出一个结果 字符类型. 字符提前赋类型 int i=1; money x; float;datetime; decimal;var 万用类型 var a = 1; 1赋值 定义新变量a var b=a; a赋值给了balert("a") 显示a alert(a) 显示1 var x_t = typeof(x) 输出字符的类型 var y_n = parseInt(y) 强制转换y int类型var a_n =x+y_nalert(a_n) var a =…
编写一个hello,world public class Hello{ public static void main(String[] arge){ System.out.print("hello,world"); }} public class(这个表示一个类,修饰符的意思)Hello是类的名字 pubic static void (这些是修饰符,关键字)main(主方法)(String[] arge )这是一个参数(快捷键是psvm) System.o…