- 1、本文档共11页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA编程基础 实例
A simple JAVA program:
import java.io.*;
public class Li2_01 // Main class begin
{
public static void(String args[])
{
System.out.print(This is my first Java Application program!);
System.out.print(Well done!);
}
}
//单个字符输入与输出
import java.io.*;public class IOTest{ public static void main(String args[]){ char c=a; System.out.print(Enter a character please:); try{ c=(char)System.in.read(); System.out.print(The character youve entered is +c); }catch(IOException e){}}}
//字符串输入与输出
import java.io.*;public class IOTest{ public static void main(String args[]){ String c=; BufferedReader buf=new BufferedReader(new InputStreamReader(System.in)); System.out.print(Enter a string:); try{ c=buf.readLine(); System.out.print(The string youve entered is \ +c+ \ ); }catch(IOException e){}}}
//接收一个整数并输出。import java.io.*;public class Int{ public static void main(String args[]) { String intNo; int i; BufferedReader buf=new BufferedReader(new InputStreamReader(System.in)); try{ System.out.print(Please input an integer:); intNo=buf.readLine(); i=Integer.parseInt(intNo); System.out.print(The integer youve entered is:+i+.);
}catch(IOException e){e.printStackTrace();} }}
1、字符串转换成各种数据类型的方
long long_num=Long.parseLong(str);
int int_num=Integer.parseInt(str);
short short_num=Short.parseShort(str);
byte byte_num=Byte.parseByte(str);
double double_num=Double.parseDouble(str);
float float_num=Float.parseFloat(str);
2、各数据类型所占字节数
int 4字节
short 2字节
long 8字节
byte 1字节
float 4字节
double 8字节
3、算术运算符
+ - * / % -(取负值) ++ --
4、关系运算符
= = == !=
5、逻辑运算符
xy 当x为false时,不运行y;
xy
|| x||y 当x为true时,不运行y;
| x|y
! !x x是false时结果为true,当x是true时结果为false;
^ x^y x和y均为false或者true时结果为false;
6、位运算符
- 按位取反
按位与
| 按位或
^ 按位异或
左移 低位添零
右移 xy 将x向右移
文档评论(0)