欢迎来到天天文库
浏览记录
ID:13547629
大小:213.00 KB
页数:11页
时间:2018-07-23
《java编程基础 实例》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、AsimpleJAVAprogram:importjava.io.*;publicclassLi2_01//Mainclassbegin{publicstaticvoid(Stringargs[]){System.out.print("ThisismyfirstJavaApplicationprogram!");System.out.print("Welldone!");}}//单个字符输入与输出importjava.io.*;publicclassIOTest{publicstaticvoid
2、main(Stringargs[]){charc='a';System.out.print("Enteracharacterplease:");try{c=(char)System.in.read();System.out.print("Thecharacteryou'veenteredis"+c);}catch(IOExceptione){}}}//字符串输入与输出importjava.io.*;publicclassIOTest{publicstaticvoidmain(Stringargs
3、[]){Stringc="";BufferedReaderbuf=newBufferedReader(newInputStreamReader(System.in));System.out.print("Enterastring:");try{c=buf.readLine();System.out.print("Thestringyou'veenteredis""+c+""");}catch(IOExceptione){}}}//接收一个整数并输出。importjava.io.*;publi
4、cclassInt{publicstaticvoidmain(Stringargs[]){StringintNo;inti;BufferedReaderbuf=newBufferedReader(newInputStreamReader(System.in));try{System.out.print("Pleaseinputaninteger:");intNo=buf.readLine();i=Integer.parseInt(intNo);System.out.print("Theinteg
5、eryou'veenteredis:"+i+".");}catch(IOExceptione){e.printStackTrace();}}}1、字符串转换成各种数据类型的方longlong_num=Long.parseLong(str);intint_num=Integer.parseInt(str);shortshort_num=Short.parseShort(str);bytebyte_num=Byte.parseByte(str);doubledouble_num=Double.par
6、seDouble(str);floatfloat_num=Float.parseFloat(str);2、各数据类型所占字节数int4字节short2字节long8字节byte1字节float4字节double8字节3、算术运算符+-*/%-(取负值)++--4、关系运算符>>=<<===!=5、逻辑运算符&&x&&y当x为false时,不运行y;&x&y
7、
8、x
9、
10、y当x为true时,不运行y;
11、x
12、y!!xx是false时结果为true,当x是true时结果为false;^x^yx和y均为fa
13、lse或者true时结果为false;6、位运算符-按位取反&按位与
14、按位或^按位异或<<左移低位添零>>右移x>>y将x向右移y位,左边的高位添符号位>>>不带符号右移x>>>y将x右移y位,左边高位添零7、条件赋值运算符x?y:z8、广义赋值运算符例:+=-=……9、对象运算符XinstenceofY判断X对象是否是类Y所创建。10、括号与方括号运算符()、[]//IfElse选择语句,流程控制importjava.io.*;publicclassIfElse{publicstaticvoi
15、dmain(Stringargs[])throwsIOException{Doublex;//Student'smarkStringstr;BufferedReaderbuf=newBufferedReader(newInputStreamReader(System.in));System.out.print("Pleaseinputthestudentmark:");x=Double.parseDouble(buf.readLine());System.out.println();if(x<0
此文档下载收益归作者所有