基础篇

一、运算符
1、付值运算符
    =、+=、-=、/=、%=、&=、|=、^=、<<=、>>=、>>>=
2、算术运算符
   +、-、*、/、%
   eg-a:有X个学员需要住宿,每个房间住6个人。问需要多少个房间?
      public static void main(String [] args)
      {
         int x;
         x=Integer.parseof(args[0]).intvalue();
         System.out.println((x+5/6));
      }
   eg-b:滚动显示0-9数字
      public static void main(String [] args)
      {
         for(int x=0;;x++)
         {            
            System.out.println(x%10);
         }
      }
3、关系运算符
   >、>=、<、<=、==、!=
4、逻辑运算符
   &&、||、!、^、&、|
5、位逻辑运算
   &、|、^、~、>>、<<、>>>
   >>逻辑右移多少位其实就是除以2的多少次方;<<逻辑左移多少位其实就是乘以2的多少次方。
6、其他运算符
   ?:类似于if else、[]数组、.定界符、()参数调用/声明/类型转换、
   new 实例化对象/建立堆内存、instanceof检验左边是否为右边的实例化对象。
二、语句与流程控制
if() {} else{}
for(;;){}
while(){}
do{}while();
switch(){case break;default:;}
break;continue;return;
三、基本数据类型
   1、int,char,float,double,byte,short,long,boolean
   2、变量定义:数据类型 变量名1....变量名n;
   3、赋值:变量名=值;
   4、定义常量:final 变量类型 变量名/=值;
四、基本数据类类型
   1、Integer<=>int,String<=>char[],Float<=>float,Double<=>double,Byte<=>byte,Short<=>short,Long<=>long,Boolean<=>boolean,Character<=>char

posted on 2006-03-13 11:08 javabbs.net 阅读(204) 评论(0)  编辑  收藏 所属分类: java基础篇

只有注册用户登录后才能发表评论。


网站导航: