摘要:
package cn.itcast.Demo4;public class Test3 { public static void main(String[] args) { //定义一个字符串 String s1 = "abc"; //byte[] getBytes(); 将字符串转换成字节数组 by 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
学生类里的toString方法默认调用Object里的方法,重写学生类里toString方法 实际开发中,我们把两个对象的各个属性值都相同的情况下,才会认为这两个对象是同一个对象 实际开发中,一般都要重写toString和equals方法 阅读全文
摘要:
---------------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------... 阅读全文
摘要:
package com.Demo2;//自定义异常类public class MyException extends Exception { //传递数字>10 private int detail; public MyException(int a) { this.detail = a; } // 阅读全文
摘要:
异常处理五个关键字:try 、catch 、 finally 、 throws public class Test { public static void main(String[] args) { int a = 1; int b = 0; try {//try监控区域 System.out.p 阅读全文
摘要:
阅读全文
摘要:
package com.oop.Demo9;public class Outer { private /*static*/ int id=10; public void out(){ System.out.println("这是外部类的方法"); } public class Inner{ publ 阅读全文