各语言数据类型
JS中整数型、浮点型、String、布尔型、转义字符、未定义、空值(null)
JAVA中 byte short int long float double boolean char
C中char int short long float double long double void类型 C语言没有boolean类型变量
python中 Nubmer String List Tuple Set Dict bool
VB中byte,boolean,Integer,Long ,Single ,Double ,Currency ,Decimal,Date,Object,String ,Variant
对象声明
JS中 new String('tang') 或 var t='tang' var a=3;
C中int a=3;
python中 a=3 类()
java中 int a=3
VB中dim a as Interger