问答详情
源自:2-6 Java中的数据类型

为啥报错了

public class HelloWorld{

    public static void main(String[] args) {

String.char name="爱慕课";

String.char sex='男';

String.int num=18;

String.double price=120.5;

String.boolean isOK=true;

System.out.println(name);

System.out.println(sex);

System.out.println(num);

System.out.println(price);

System.out.println(isOK);

}

}


提问者:qq_慕无忌1450521 2021-03-11 15:58

个回答

  • 慕仔之万份收益
    2021-03-16 13:40:29

    http://img3.mukewang.com/605043f8000158e803850331.jpg

    把所有String和后面的点去掉,char是字符类型用单引号,第一句应把char改为String.   

  • 慕工程8521583
    2021-03-11 21:32:28

    String name = "爱慕课";char sex = '男';  int num = 18; double price = 120.5;   boolean isOK = true;

    应该是这样的,String是字符串类型,是引用数据类型,int、char、double、boolean这些是基本数据类型,.是用来调方法或者是找对应包里面的类的