java数据类型
Posted JoyJin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java数据类型相关的知识,希望对你有一定的参考价值。
public class HelloWorld{
public static void main(String[] args) {
String name="爱慕课";
char sex=\'男\';
int num=18;
double price=120.5;
boolean isOK=true;
System.out.println(name);
System.out.println(sex);
System.out.println(num);
System.out.println(price);
System.out.println(isOK);
}
}
以上是关于java数据类型的主要内容,如果未能解决你的问题,请参考以下文章