一.各种常见的异常 在上一节中程序如果你注意留意,程序抛出的异常是:java.lang.ArithmeticException.这个异常是在lang包中已经定义的.在lang包中还定义了一些我们非常常见的异常,如下表: 上面这些异常要求都能记住,程序抛出了异常后,你要知道程序发生了是什么问题.我们可以举个例子说明一下.代码如下: public static void main(String[] args) { Cal cal=null;//没有new对象 try{ int result=cal.…
JDK自带注解 @Override 重写 @Deprecated 已过期 @Suppvisewarnings 压制警告 Demo: public interface Person { public String Name(); public int Age(); @Deprecated public void Say(); //过期,但不能删除,可以注解已过期 } class Man implements Person { @Override public String Name() { ret…
package scanner; public class SingleAnd { public static void main(String[] args) { int[] first = {10,15,8,5,0}; int[] second = {4,8,1,2}; int result = 0; for(int i=0; i<first.length; i++){ for(int j=0; j<second.length; j++){ result = first[i] &…
博客大搬家. 一.位运算符简介: 1.按位与&.如果两个整形数据 a.b 对应位都是1,则结果位才为1,否则为0,(int 最大值0x7fffffff ): int a = 0x7fffffff; int b = 12; int c = 0; int aAndB = a&b; // aAndB is 12 int aAndC = a&c; // aAndC is 0 2.按位或|.如果两个操作数都是0,则结果为0,否则为1: int a = 0x7fffffff; int b…
package com.per.sdg.operator; /** * 结论:先进行'&&'运算,在进行'||'运算 * @author sundg * */ public class AndOrDemo { public static void main(String[] args) { int a=1; int b=3; int c=5; boolean d=true; System.out.println(a>b||c>b&&d);//==>F||T…