java大学教程ppt JAVA的基本语法PPT课件

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
2020/10/13
possible loss of precision found : double required: float
float f = 5.2; ^
1 error
2
第二讲 JAVA的基本语法
• Quiz 3
– What are the data types of the following expressions, assuming that i's type is int?
2020/10/13
byte a = 7; byte b = (byte)(a + 1);
1
第二讲 JAVA的基本语法
• Quiz 2
int a = 5;
int a = 5;
int b = 3;
int b = 3;
int c = a>b?5:6.8; double c = a>b?5:6.8;
float f = 5.2; ……
i>0
[boolean]
i=0
[int]
i++
[int]
(float)i
[float]
i == 0
[boolean]
"aString" + i [String]
2020/10/13
3Hale Waihona Puke Baidu
谢谢您的指导
THANK YOU FOR YOUR GUIDANCE.
感谢阅读!为了方便学习和使用,本文档的内容可以在下载后随意修改,调整和打印。欢迎下载!
2020/10/13
汇报人:XXXX 日期:20XX年XX月XX日
4
第二讲 JAVA的基本语法
• Quiz 1
byte a = 7; byte b = a + 1;
int a = 7; int b = a + 1;
possible loss of precision found : int required: byte
byte b = a + 1; ^
1 error
相关文档
最新文档