1. char 字符型 2个字节
    2. bollen 布尔型 1个字节 true false
    3. short 短整型 2
    4. int 整型 4 (整形默认)
    5. long 长整型 8
    6. 一个字节8个比特位
    7. 十进制:数据以非0开头,例如:4,-15
    8. 八进制:数据以0开头,例如:054012
    9. 十六进制:数据以0x开头,例如:0x110xAD00
    10. 二进制(是JDK1.7新增功能):数据以0b开头,例如:0b101
    11. float类型以F/f结尾,double类型以D/d结尾。如果浮点常量不带后缀,则默认为双精度常量
    12. 自动转换的次序为:
    13. byte-->short-->char-->int-->long-->float-->double
    14. 强制类型转换格式为:
    15. 变量 = (数据类型)表达式。 //注意:强制转换可能导致数据的失真。
    16. 出现各种类型数据的混合运算,系统将按自动转换原则将操作数转化为同一类型,再进行运算。
    17. 一个整数和一个浮点数进行运算,结果为浮点型。字符与整数的混合运算,字符转换为整数
    18. x=3,执行下面语句结果为true
    19. System.out.println((x==3)||(x/0>2)); 或运算符当前面为真不再计算后面
    20. 如果将代码改为:
    21. System.out.println((x/0>2)||(x==3)); 则运行时将产生算术运算异常,不能用x去除0
    22. public class Test1 {
    23. public static void main(String[] args) {
    24. int x=5;
    25. if(x=0)
    26. System.out.println("false");
    27. else
    28. System.out.println("ture");
    29. }
    30. }
    31. 编译错误!
    32. 原因:if条件只接受boolean类型的值(truefalse),x=0int类型不能隐式地转换为boolean类型。
    1. 输出:
    2. 1print()方法:实现不换行的数据输出;
    3. 2println()方法:与上面方法的差别是输出数据后将换行。
    4. 3printf()方法:带格式描述的数据输出。
    5. %d代表十进制数
    6. %f代表浮点数
    7. %e代表科学表示法的指数位数(指数形式,默认6位小数:1.500340e+03
    8. %n代表换行符
    9. %x代表十六进制数
    10. %s代表字符串
    11. %c 单个字符
    12. %% 输出百分号%
    13. 输入:
    14. 1、字符类型数据的输入
    15. 利用标准输入流(System.in)的read()方法,可以从键盘读取字符,返回值为 int
    16. char c=(char)System.in.read()
    17. 2、字符串的输入
    18. 1. 将键盘输入的数据看作字符流,利用InputStreamReader将从键盘输入的字节流数据转化为字符序列来识别。
    19. 2. 利用BufferedReader对字符流序列进行过滤,借助BufferedReader流对象提供的方法readLine()从键盘读取一个字符串。
    20. import java.io.*;
    21. public class InputString{
    22. public static void main(String args[]) {
    23. String s=“”; 必须赋初值,否则编译出错
    24. System.out.print ("Enter a String please: ");
    25. try {
    26. BufferedReader in= new BufferedReader(new InputStreamReader(System.in));
    27. s=in.readLine();
    28. }
    29. catch (IOException e) { }
    30. System.out.println ("You've entered a String: " +s);
    31. }
    32. }
    33. 3、整数和双精度数的输入
    34. 通过上述字符串输入后将字符串转化
    35. Integer.parseInt(String s) 将数字字符串转化为整数
    36. Double.parseDouble(String s) 将字符串形式的数字数据转化为双精度数。
    37. 例如:
    38. String x="123" int m= Integer.parseInt(x); //m 的值为123
    39. x="123.41" double n= Double.parseDouble(x) ; //n的值为123.41
    40. java.util.Scanner
    41. 1import java.util.Scanner;
    42. 2Scanner in=new Scanner(System.in);
    43. 3 boolean hasNext() 判是否有下一个数据
    44. int nextInt() :读取整数
    45. double nextDouble() :读取双精度数
    46. String nextLine() 读取一行字符串
    1. double random() 产生0~1之间随机数,不包括01
    2. long round(double d) 四舍五入的整数
    3. int abs(int i)
    4. int max(int i1,int i2)
    5. double ceil(double d) 不小于d的最小整数
    6. double floor(double d) 不大于d的最大整数
    7. double random() 产生0~1之间随机数,不包括01
    8. long round(double d) 四舍五入的整数
    9. double log(double d)
    10. double exp(double x)
    11. double pow(double a, double b)
    12. double sqrt(double a)
    13. double cos(double d)
    14. 例:三个数最大值 int c=Math.max(a,Math.max(b,c));
    15. 例:产生一个随机两位数 int a = 10 + (int)(90*Math.random());
    16. 产生[a,b]随机整数: a+(int)(Math.random()*(b-a+1))
    1. 1、相同数据类型元素的集合;
    2. 2、连续存放在内存之中;
    3. 3、用数组名和位置(称为下标)表达
    4. 增强 for循环 访问数组
    5. for (数组存储元素类型 循环变量名 : 数组名) {
    6. 循环体
    7. }
    8. 例:for (int x:score){sum += x;}其中,x的取值随循环从score[0],score[1],…,score[9]变化。
    9. 一维:{
    10. 声明:int a[];或int []a;
    11. 创建空间:int score[] = new int[10];
    12. 创建并初始化: int score[ ] = {1,2,3,4,5,6,7,8,9,10};
    13. int score[ ]=new int[这里不能有大小] {1,2,3,4,5,6,7,8,9,10};
    14. score.length 指数组score的长度。
    15. String str; str.length();字符串长度
    16. }
    17. 二维:{
    18. 声明:int a[][];
    19. 创建空间:二维数组看作是数组的数组,不要求二维数组每一维的大小相同
    20. 1)直接为每一维分配空间,如:
    21. int a[][] = new int [2][3];
    22. 2)从最高维开始,按由高到低的顺序分别为每一维分配空间。如:
    23. int a[][] = new int [2][]; a[0] = new int [3]; a[1] = new int [4];
    24. 长度:
    25. 要获取数组的行数 a.length
    26. 通过某一行获取列数: a[1].length a[2].length
    27. 创建并初始化:
    28. int a[][] = {{1,2,3},{4,5,6}};
    29. int b[][] = {{1,2},{4,5,6}}; }
    30. 例:二维数组动态创建
    31. public class ArrayOfArraysDemo2 {
    32. public static void main(String[] args) {
    33. int[][] aMatrix = new int[4][];
    34. for (int i = 0; i < aMatrix.length; i++) {
    35. aMatrix[i] = new int[i+1];
    36. for (int j = 0; j < aMatrix[i].length; j++)
    37. aMatrix[i][j] = i + j;
    38. }
    39. for (int i = 0; i < aMatrix.length; i++) {
    40. for (int j = 0; j < aMatrix[i].length; j++)
    41. System.out.print(aMatrix[i][j] + " ");
    42. System.out.println();
    43. }
    44. }
    45. /*
    46. 【运行结果】
    47. 0
    48. 1 2
    49. 2 3 4
    50. 3 4 5 6
    51. */
    52. }
    53. 例:求矩阵的最外一圈元素之和
    54. public class Demo {
    55. public static void main(String[ ] args) {
    56. int [ ][ ] a = new int[4][5];
    57. int sum=0;
    58. for (int i = 0; i < a.length; i++) {
    59. for (int j = 0; j < a[i].length; j++) {
    60. a [i][j] = (int)(Math.random()*10);
    61. System.out.print(a[i][j] + "\t");
    62. if (i==0||j==0||i==a.length-1||j==a[0].length-1)
    63. sum += a[i][j];
    64. }
    65. System.out.println();
    66. }
    67. System.out.println("sum= " +sum);
    68. }
    69. /*
    70. 7 9 3 7 8
    71. 8 1 5 2 8
    72. 4 2 1 5 4
    73. 1 1 1 2 6
    74. sum= 69
    75. */
    76. }
    77. 因为是在堆中,所以new的时候jvm会自动给数组赋值。
    78. 1int类型定义的数组,初始化默认是0
    79. 2String类型定义的数组,默认值是null
    80. 3char类型定义的数组,默认值是0对应的字符
    81. 4double类型定义的数组,默认值是0.0
    82. 5float类型定义的数组,默认值是0.0
    83. 6boolean类型定义的数组,默认值是false
    84. Arrays类封装了对数组进行操作的一系列静态方法。
    85. 1. 利用Arrays类的sort方法可方便地对数组排序。
    86. 例如: java.util.Arrays.sort(a) ;
    87. 2. 利用Arrays类的toString()方法可以将数组转化为字符串的形式。
    88. 例如: System.out.print(java.util.Arrays.toString(a) );
    89. 3. 利用Arrays类的copyOf()方法实现数组的拷贝。
    90. 例如: int[] b=Arrays.copyOf(a,3);
    91. {
    92. import java.util.Random;
    93. public class test7_5 {
    94. public static void main(String[] args) {
    95. {
    96. int[] a=new int[20];//整型数组
    97. String str="";//存放抽到的随机数
    98. for(int i=1;i<=20;)
    99. {
    100. int num=10+(int)(Math.random()*81);//Math.random()是用于随机生成一个[0.0, 1.0)
    101. String S=num+","; //随机数之间用逗号隔开
    102. if(str.indexOf(S)==-1) //是否已经存在该数
    103. {
    104. str=str+S; //拼接字符串
    105. i++;
    106. }
    107. }
    108. String[] str1=str.split(",");//以逗号为分隔符,存入str1
    109. //将字符串类型转为整型并输出
    110. System.out.println("随机函数产生 20 个 10 ~ 90 之间的不重复整数为:");
    111. for(int i=0;i<str1.length;i++) {
    112. a[i]=Integer.parseInt(str1[i]);
    113. System.out.print(a[i]+" ");
    114. }
    115. System.out.println();
    116. java.util.Arrays.sort(a); 排序
    117. System.out.println("数组的内容按由小到大的顺序输出为:");
    118. for(int i=0;i<a.length;i++)
    119. System.out.print(a[i]+" ");
    120. }
    121. }
    122. }
    123. }
    1. 属性初始化执行次序:定义时赋值→ 初始代码块 构造方法
    2. 初始化:{
    3. 1、定义属性成员时初始化:
    4. public class Point {private int x=10;}
    5. 2、初始化块来设置对象的初值:
    6. public class Point {
    7. private int x; 默认为0
    8. { //初始化代码块
    9. x = 20;
    10. }
    11. }
    12. 3、构造方法:
    13. public Point(int x1, int y1) {
    14. x = x1;y = y1;
    15. }
    16. 例:
    17. public class A {
    18. int v=0;
    19. { v=v+1; } //初始化块
    20. public A( ) { }
    21. public A(int x ) { v=x; }
    22. public static void main(String args[ ]) {
    23. A m1 = new A(25);
    24. System.out.println(m1.v); 25
    25. A m2 = new A();
    26. System.out.println(m2.v); 1
    27. }
    28. }
    29. }
    30. static修饰的属性:{
    31. 访问:
    32. 在本类中直接访问:count
    33. 通过类名访问:User.count
    34. 通过类的一个对象访问,如:x1.count
    35. 静态初始化代码的执行是在main方法执行前完成。
    36. 初始化代码块:对象初始化,创建对象时,系统先调用类里定义的初始化块。在构造方法之前执行。
    37. 静态初始化代码块:又称类初始化代码块,对类进行初始化,在初始化代码块之前执行,其不能对实例变量进行初始化。
    38. 区别:
    39. 初始化代码块创建对象时执行,每次创建对象都会执行一次;(main之后)
    40. 静态初始化代码块在加载类时会执行,且只执行一次(main之前)
    41. 例:
    42. class test {
    43. static int x=5;
    44. int y=5;
    45. static { x+=10; }
    46. {y+=10;}
    47. public static void main(String args[ ]) {
    48. System.out.println("x="+x);
    49. x+=20;
    50. test a=new test();
    51. System.out.println("x="+a.x);
    52. System.out.println("y="+a.y);
    53. a.y+=20;
    54. test b=new test();
    55. System.out.println("y="+b.y);
    56. }
    57. static { x=x-5; } 注意
    58. /*
    59. x=10
    60. x=30
    61. y=15
    62. y=15
    63. */
    64. }
    65. 例:静态空间与对象空间的对比
    66. class TalkPlace {
    67. static String talkArea="";
    68. }
    69. public class User {
    70. static int count=0; //类变量
    71. String username;
    72. int age; //实例变量
    73. public User(String name,int yourage) {
    74. username=name;
    75. age=yourage;
    76. }
    77. /* 方法log通过静态变量记录调用它的次数 */
    78. void log( ) {
    79. count++; //直接访问本类的静态变量
    80. System.out.println("you are no "+count+" user");
    81. }
    82. void speak(String words) { /* 向讨论区发言 */
    83. TalkPlace.talkArea += username + "说:"+words+"\n";
    84. }
    85. public static void main(String args[ ]) {
    86. User x1 = new User("张三",20);
    87. x1.log( );
    88. x1.speak("hello");
    89. User x2 = new User("李四",16);
    90. x2.log( );
    91. x2.speak("good morning");
    92. x1.speak("bye");
    93. System.out.println("---讨论区内容如下:");
    94. System.out.println(TalkPlace.talkArea);
    95. }
    96. }
    97. }
    98. static修饰的方法:{
    99. 1、用static修饰的方法称为静态方法,也叫类方法
    100. 2、在static方法中只能访问类变量和其它static方法
    101. 3、在static方法中绝不能直接访问任何归属对象空间的变量或方法
    102. 例:public static void clearCount(){
    103. count=0; //访问类变量
    104. age=0; //不允许
    105. } 不能访问其他非静态变量
    106. public class findPrime {
    107. public static boolean prime(int n){
    108. for (int k=2;k<=Math.sqrt(n);k++)
    109. if ( n % k==0)
    110. return false;
    111. return true;
    112. }
    113. 1 public static void main(String args[]) {
    114. for (int m=10;m<=100;m++)
    115. if ( prime(m))
    116. System.out.print(m+" , ");
    117. }
    118. 2 public static void main(String args[]) {
    119. findPrime x=new findPrime();
    120. for (int m=10;m<=100;m++)
    121. if ( x.prime(m) )
    122. System.out.print(m+" , ");
    123. } 如果将prime方法设计为非静态方法
    124. } 访问静态和非静态方法
    125. 思考题:
    126. public class Test{
    127. long a[ ] = new long[10];
    128. public static void main ( String args[] ){
    129. System.out.println (a[6]); 出现编译错误,Test x=new Test();System.out.println ( x.a[6]);或static long a[ ] = new long[10];
    130. }
    131. }
    132. }
    133. 理解this:{
    134. this ---出现在类的实例方法、初始化代码块、构造方法中,用来代表使用该方法的当前对象的引用。
    135. this作为前缀,访问当前对象的属性或方法。
    136. 1)使用this可以区分当前作用域中同名的不同变量。
    137. private int x, y; // 属性
    138. public Point(int x, int y) { //构造方法
    139. this.x = x;
    140. this.y = y;
    141. }
    142. 2)把当前对象引用作为参数传递给另一个方法。
    143. 如: p.distance(this);
    144. 3)一个构造方法中调用同类的另一个构造方法。
    145. public Point() { this(0,0); }
    146. 例:
    147. public class Point {
    148. private int x, y;
    149. public Point(int x, int y) {
    150. this.x = x; this.y = y;
    151. }
    152. public Point() { 无参构造方法
    153. this(0,0); this调用本类的另一构造方法
    154. }
    155. public double distance(Point p) {
    156. return Math.sqrt((this.x-p.x)* (x-p.x) + (y-p.y)*(y-p.y));
    157. }
    158. /*以下两个方法在利用上面方法求距离(演示概念)*/
    159. public double distance2(Point p) {
    160. return p.distance(this); //p到当前点的距离
    161. }
    162. public double distance3(Point p) {
    163. return this.distance(p); //调用当前对象另一方法
    164. ……
    165. }
    166. }
    167. }
    1. 继承意味着什么?什么是变量的隐藏?
    2. 1、可以实现方法重写(这样可以实现运行时多态性)。继承允许我们重用代码,它提高了Java应用程序的可重用性。
    3. 2、如果子类中定义了与父类同名的属性,在子类中将隐藏来自父类的同名属性变量。
    4. 子类构造方法与父类构造方法有何联系?
    5. 1super来调用父类的构造方法,必须是子类构造方法的第1条语句!super.name=aname; 通过super关键字来访问父类中的name属性
    6. 2、子类在自己定义构造方法中如果没有用super明确调用父类的构造方法,则在创建对象时,首先自动执行父类的无参构造方法,然后再执行自己定义的构造方法。
    7. 注意:如果子类构造函数没有用父类构造方法且父类中无无参构造函数会出现编译出错
    8. 例:{
    9. class parent {
    10. String my;
    11. public parent(String x) { my=x; }
    12. }
    13. public class subclass extends parent {
    14. subclass x=new subclass();
    15. }
    16. }
    17. 子类this:{
    18. 【注意】使用 this 查找匹配的方法时首先在本类查找,找不到时再到其父类和祖先类查找;
    19. 使用 super 查找匹配方法时,首先直接到父类查找,如果不存在,则继续到其祖先类逐级往高层查找。
    20. }
    21. 多态性:{
    22. 1、(编译时多态)同一类中(重载):同一类中允许多个同名方法,通过参数的数量、类型的差异进行区分。编译时确定调用哪个方法。
    23. 2、(运行时多态)子类对父类方法的重新定义(方法覆盖):方法名、返回值和参数形态完全一样。在运行时确定调用哪个方法。
    24. 方法覆盖有以下问题值得注意:6.2
    25. 方法重载与覆盖的区别
    26. 1. 重载是同一个类中定义了多个同名的方法,表示方法间的关系,是水平关系;覆盖是子类和父类之间的关系,是垂直关系。
    27. 2. 重载是多个方法之间的关系;覆盖是由一个方法或只能由一对方法产生关系。
    28. 3. 重载要求参数列表不同;覆盖要求参数列表相同。
    29. 4. 重载是根据调用时的实参表与形参表选择方法体;覆盖是根据对象类型来调用方法体。
    30. 访问继承的成员:{
    31. (1)继承关系中方法的继承与父类属性隐藏{
    32. class parent{
    33. int x=100;
    34. void m() {
    35. System.out.println(x);
    36. }
    37. }
    38. public class child extends parent{
    39. int x=200;
    40. public static void main(String[] args) {
    41. child a=new child();
    42. a.m();
    43. System.out.println(a.x);
    44. }
    45. }
    46. 运行结果:
    47. 100
    48. 200
    49. }
    50. (2)继承关系中方法的覆盖{
    51. class parent{
    52. int x=100;
    53. void m() {
    54. System.out.println(x);
    55. }
    56. }
    57. public class child extends parent{
    58. int x=200;
    59. void m() {
    60. System.out.println("x="+x);
    61. }
    62. public static void main(String[] args) {
    63. child a=new child();
    64. a.m();
    65. System.out.println(a.x);
    66. }
    67. }
    68. 运行结果:
    69. x=200
    70. 200
    71. }
    72. (3)父类引用子类对象{
    73. class parent{
    74. int x=100;
    75. void m() {
    76. System.out.println(x);
    77. }
    78. public class child extends parent{
    79. int x=200;
    80. void m() {
    81. System.out.println("x="+x);
    82. }
    83. public static void main(String[] args) {
    84. parent a=new child();
    85. a.m();
    86. System.out.println(a.x);
    87. }
    88. }
    89. 运行结果:
    90. x=200
    91. 100
    92. }
    93. } 重要,调用的方法是子类方法,属性是父类属性
    94. }
    95. }
    96. 访问继承的成员(重要){
    97. class SuperShow {
    98. int y = 8; // 父类SuperShow的y属性
    99. int m = 2;
    100. void show() { //父类SuperShow的show方法
    101. System.out.println("sup.show,y="+y);
    102. }
    103. }
    104. public class ExtendShow extends SuperShow { 每个子类对象有4个属性:yzsuper.ym
    105. int y = 20; // 子类ExtendShow的y属性
    106. int z = 1;
    107. void show() { // 子类ExtendShow的show方法
    108. System.out.println("ext. show,y="+y);
    109. }
    110. public static void main(String args[]) {
    111. ExtendShow b = new ExtendShow();
    112. SuperShow a = b;
    113. System.out.println("ext.y=" + b.y); 20
    114. System.out.println("sup.y=" + a.y); 8
    115. b.show(); y=20
    116. a.show(); y=20
    117. System.out.println("z="+b.z+",m="+b.m); z=1,m=2
    118. }
    119. }
    120. 运行结果:
    121. ext.y=20
    122. sup.y=8
    123. ext. show,y=20
    124. ext. show,y=20
    125. z=1,m=2
    126. } //调用的方法是子类方法,属性是父类属性
    127. 例:{
    128. 1
    129. class Test5 {
    130. int k = 8;
    131. public void doSome() {
    132. System.out.println("k1="+k);
    133. }
    134. }
    135. class Sub extends Test5 {
    136. int k = 66;
    137. public void doSome() {
    138. k=k-2;
    139. System.out.println("k2="+k);
    140. }
    141. public static void main(String args []) {
    142. Test5 obj = new Sub();
    143. obj.doSome();
    144. System.out.println("k3="+obj.k);
    145. }
    146. }
    147. 运行结果:
    148. k2=64
    149. k3=8
    150. 思考:
    151. (1)将obj定义为子类引用变量如何?(Test5->Sub)
    152. 运行结果:
    153. k2=64
    154. k3=64
    155. (2) 将子类的doSome()方法删除又如何?
    156. k1=8
    157. k3=8
    158. 2
    159. class exSuper {
    160. public void func(String p, String s) {
    161. System.out.println(p);
    162. }
    163. }
    164. public class test extends exSuper {
    165. public void func(String p, String s) {
    166. System.out.println(p + " : " + s);
    167. }
    168. static public void main(String arg[ ]) {
    169. exSuper e1 = new exSuper( );
    170. e1.func("hello1", "hi1");
    171. exSuper e2 = new test();
    172. e2.func("hello2", "hi2");
    173. }
    174. }
    175. 运行结果:
    176. hello1
    177. hello2 : hi2
    178. }
    179. Object类:{
    180. public boolean equals(Object obj) :
    181. //该方法本意用于比较两个对象的封装的数据是否相等;而比较运算符“==”在比较两对象变量时,只有当两个对象引用指向同一对象时才为真值。
    182. Object类中,equals方法是采用“==”运算进行比较(地址比较);若表示对象的数据比较,要重写equals()方法;
    183. public String toString(): 该方法返回对象的字符串描述;
    184. public final Class getClass(): 返回对象的所属类;
    185. protected void finalize(): 该方法Java垃圾回收程序在删除对象前自动执行。
    186. {
    187. public class Point {
    188. private int x, y;
    189. public Point(int x, int y) {
    190. this.x = x;
    191. this.y = y;
    192. }
    193. public boolean equals(Point p) {
    194. return (x == p.x && y == p.y);
    195. }
    196. public String toString() {
    197. return "点:" + x + "," + y;
    198. }
    199. public static void main(String arg[]) {
    200. Point x=new Point(4,3);
    201. System.out.println("x="+x);
    202. System.out.println( x.equals(new Point(4,3)) );
    203. }
    204. }
    205. 运行结果:
    206. x=点:4,3
    207. true
    208. 【思考】
    209. 1、观察有无toString()方法时程序运行结果的变化。
    210. toString()运行结果:
    211. x=Point@404b9385
    212. true
    213. 2、观察有无equals(Point p)方法程序运行结果的变化。
    214. equals(Point p)运行结果:
    215. x=点:4,3 (没有重写equals方法则是引用的比较)
    216. false
    217. }
    218. {
    219. public class IsEqual {
    220. int x;
    221. public IsEqual(int x1) {
    222. x=x1;
    223. }
    224. public static void main(String a[ ]) {
    225. IsEqual m1=new IsEqual(4);
    226. IsEqual m2=new IsEqual(4);
    227. IsEqual m3=m2;
    228. m3.x=6; //注释后呢?
    229. System.out.println("m1=m2 is "+(m1==m2));
    230. System.out.println("m2=m3 is "+(m2==m3));
    231. System.out.println("m1.x==m2.x is "+(m1.x==m2.x));
    232. System.out.println("m1.equals(m2)="+m1.equals(m2));
    233. }
    234. }
    235. 运行结果:
    236. m1=m2 is false
    237. m2=m3 is true
    238. m1.x==m2.x is false
    239. m1.equals(m2)=false
    240. m3.x=6; //注释后呢?
    241. 运行结果:
    242. m1=m2 is false
    243. m2=m3 is true
    244. m1.x==m2.x is true
    245. m1.equals(m2)=false
    246. }
    247. }
    248. 访问控制修饰符:{
    249. 同一类中 同一包中 不同包的子类中 其他
    250. private Yes
    251. 默认 Yes Yes
    252. protected Yes Yes Yes
    253. public Yes Yes Yes Yes
    254. }
    255. final修饰符:{
    256. final作为类修饰符 ----最终类 (不能有子类)
    257. final修饰方法 ----不能被子类重新定义
    258. final定义常量 (必须被初始化) ----只能赋值一次
    259. 【注意】 如果将引用类型的变量标记为final,那么该变量固定指向一个对象,但可以改变对象内的属性值。 final意味着不能改变,到此为止!
    260. {
    261. public final class test {
    262. public static int totalNumber=5;
    263. public final int id; //error 与普通属性变量不同的是,系统不会给常量赋默认初值.
    264. public int weight;
    265. public test(int weight) {
    266. id=totalNumber++;
    267. this.weight=weight;
    268. }
    269. public static void main(String args[ ]) {
    270. final test t=new test(5);
    271. t.weight=t.weight+2;
    272. t=new test(4); 不允许
    273. t.id++; 不允许
    274. }
    275. }
    276. }
    277. }
    278. 对象引用赋值转换:{
    279. 1. 允许将子类对象赋值给父类引用
    280. 2. 将父类引用赋值给子类变量时要进行强制转换,强制转换在编译时总是认可的,但运行时的情况取决于对象的值。
    281. 1. Object m = new String("123"); // 允许,父类变量引用子类对象
    282. 2. String y = m; // 不允许
    283. 3. String y = (String) m; // 强制转换,编译允许,且运行没问题
    284. 4. Integer p = (Integer) m; // 强制转换,编译允许,但运行时出错
    285. Integer p = Integer.parse((String) m);
    286. {
    287. public class test{
    288. static void m(double x) {
    289. System.out.println("m(double):" + x);
    290. }
    291. static void m(Object obj) {
    292. System.out.println("m(Object):" + obj );
    293. }
    294. public static void main (String args[]) {
    295. m("hello");
    296. m(5);
    297. }
    298. }
    299. 运行结果:
    300. m(Object):hello
    301. m(double):5.0
    302. }
    303. }
    1. public String toString() { 父类toString
    2. return "点:" + x + ","+ y;
    3. }
    4. public String toString() { 子类重写toString
    5. return super.toString() + "颜色: " +c; super代表父类对象的引用,用super调用父类成员
    6. }
    7. public void display(){
    8. System.out.print("学号::"+No);
    9. System.out.print(" 姓名::"+Name);
    10. System.out.println(" 年龄::"+Age);
    11. }
    12. public String toString(){
    13. return "学号::"+No+" 姓名::"+Name+" 年龄::"+Age;
    14. }
    1. String的特点:
    2. 1.为不可变对象,一旦被创建就不能修改它的值;
    3. 2.String类是final类型不可被继承;
    4. StringBuffer的特点:
    5. 1.它是一个可变的对象,当你需要修改其内容的时候,可以通过调用其方法进行修改。
    6. 2.不能通过赋值符号对他进行赋值.。
    7. 3.字符串连接操作中StringBuffer的效率要比String
    8. 比较字符串:
    9. String值比较:{
    10. int compareTo(String anotherString)
    11. boolean equals(Object anObject) 重写equals方法,是值比较
    12. {
    13. { String s1="Hello!World";
    14. String s2="Hello!World";
    15. boolean b1=s1.equals(s2); true
    16. boolean b2=(s1==s2); true,Java存储优化策略,字符串常量只存储一份
    17. }
    18. { String s1="Hello!World";
    19. String s2=new String("Hello!World"); 创建一个新字符串
    20. boolean b1=s1.equals(s2); true
    21. boolean b2=(s1==s2); false
    22. }
    23. }
    24. boolean equalsIgnoreCase(String anotherString)}
    25. 引用比较:“==”
    26. StringBuffer:继承的Objectequals方法,引用比较
    27. split分离字符串:{
    28. 格式:public String[] split(String regex)
    29. str="boo:and:foo:bye"str.split(":")的结果为:{ "boo", "and", "foo" , "bye" }
    30. 注意,参数串代表一个正则表达式的匹配模式,分隔符如果是+、*等符号时,要进行转义处理,例如分隔符为“+”,要写成"\\+"的正则式。
    31. String x= "1+2+4+5+8"; x.split(" \\+ ")的结果为{" 1 ", " 2 ", " 4 ", " 5 ", " 8" }
    32. 应用:
    33. String str = "Java is an Object Oriented programming language";
    34. String[] str2 = str.split(" "); //以空格为分隔符分离字符串
    35. }
    36. 写程序的运行结果{
    37. public class Foo {
    38. public static void main (String [ ] args) {
    39. StringBuffer a = new StringBuffer("A");
    40. StringBuffer b = new StringBuffer("B");
    41. operate(a,b);
    42. System.out.println(a + "," +b);
    43. }
    44. static void operate (StringBuffer x, StringBuffer y) {
    45. x.append(y);
    46. y = x;
    47. }
    48. }
    49. 运行结果:AB,B
    50. public class Foo {
    51. public static void main (String [ ] args) {
    52. String a = new String("A");
    53. String b = new String("B");
    54. operate(a,b);
    55. System.out.println(a + "," +b);
    56. }
    57. static void operate (String x, String y) {
    58. x=x+y;
    59. y = x;
    60. }
    61. }
    62. 运行结果:A,B}
    1. 4. 基本类类型和包装类有什么关系?包装类和基本数据类型之间有什么区别?
    2. 1、声明方式不同
    3. 基本类型不适用new关键字,而包装类型需要使用new关键字来在堆中分配存储空间;
    4. 2、存储方式及位置不同
    5. 基本类型是直接将变量值存储在堆栈中,而包装类型是将对象放在堆中,然后通过引用来使用;
    6. 3、初始值不同
    7. 基本类型的初始值如int0booleanfalse,而包装类型的初始值为null
    8. 4、使用方式不同
    9. 基本类型直接赋值直接使用就好,而包装类型在集合如CollectionMap时会使用到。
    10. 5、包装类都是继承Number 接口实现Compareble 接口的
    11. 包装类优点:
    12. 提供了一系列实用的方法
    13. 集合不允许存放基本数据类型数据,存放数字时,要用包装类型
    14. 包装类缺点:
    15. 由于每个值分别包装在对象中,所以ArrayList<Integer>的效率远远低于int[]数组。(应该用其构造小型集合,其原因是程序员操作的方便性要比执行效率更加重要)
    16. 补充:
    17. 1int 类型不能赋值为null(默认值为0),包装类型Integer可以为null(默认值为null
    18. 2、当int中的数值 integer 中的数值一致的时候, 使用 “==” 进行比较,结果为true
    19. 3、如果两个都是newInteger相比较也是相等的
    20. 5. 为什么要使用包装类?
    21. 我们知道Java是一个面相对象的编程语言,基本类型并不具有对象的性质,为了让基本类型也具有对象的特征,
    22. 就出现了包装类型(如我们在使用集合类型Collection时就一定要使用包装类型而非基本类型),它相当于将基本类型“包装起来”,
    23. 使得它具有了对象的性质,并且为其添加了属性和方法,丰富了基本类型的操作。
    24. 另外,当需要往ArrayListHashMap中放东西时,像intdouble这种基本类型是放不进去的,
    25. 因为容器都是装object的,这是就需要这些基本类型的包装器类了。
    26. 1intInteger
    27. int i = 0;
    28. Integer ii = new Integer(i);
    29. 2Integerint
    30. Integer ii = new Integer(0);
    31. int i = ii.intValue();

    https://www.yuque.com/shaonian-8joxb/pvi3zw/qipn34#qbimZ

    1. 抽象类abstract通过继承实现extends
    2. 格式:abstract class 类名称 {
    3. 成员变量;
    4. 方法(){……} //一般方法
    5. abstract 方法(); //抽象方法
    6. }
    7. abstract class Shape { //定义抽象类
    8. abstract public double area(); //抽象方法
    9. }
    10. class Triangle extends Shape { //定义三角型
    11. private double a, b, c;
    12. public Triangle(double a, double b, double c) {
    13. this.a = a;
    14. this.b = b;
    15. this.c = c;
    16. }
    17. public double area(){
    18. double p = (a + b +c) / 2;
    19. return Math.sqrt(p * (p - a) * (p- b) * (p- c));
    20. }
    21. }
    22. 在抽象类中可以包含一般方法和抽象方法。
    23. 抽象类表示的是一个抽象概念,不能被实例化为对象。
    24. 抽象类具体应用时需要继承。
    25. 继承后抽象类的方法都必须全部实现。
    26. 接口interface通过implements实现
    27. 格式:[public] interface 接口名 [extends 父接口名列表] {
    28. [public] [static] [final] 域类型 域名 = 常量值 ;
    29. [public] [abstract] 返回值 方法名(参数列表) [throw 异常列表];//别忘了默认也是这些修饰!
    30. }
    31. interface Copyable {
    32. //[public] Object copy ();默认为public
    33. Object copy ();
    34. }
    35. class Book implements Copyable {
    36. String book_name; // 书名
    37. String book_id; // 书号
    38. public Book(String name ,String id) {
    39. book_name = name;
    40. book_id = id;
    41. }
    42. public Object copy () { //public 一定要!
    43. //这里是否可为Book类型?返回值为子类Book时,可改为Book
    44. return new Book(book_name , book_id);
    45. }
    46. //实现接口的类要将接口带来的抽象方法覆盖!
    47. public String toString(){
    48. return super.toString()+" ,书名:"+book_name+",书号="+book_id;
    49. }
    50. }
    51. 声明接口可给出访问控制符;
    52. 一个接口还可以继承多个父接口,父接口间用逗号分隔。
    53. 系统默认接口中所有属性的修饰都是public static final
    54. 系统默认接口中所有方法的修饰都是public abstract
    55. 一个类可以实现多个接口。在类的声明部分用implements关键字声明该类将要实现的接口,接口间用逗号分隔;
    56. 如果实现某接口的类不是抽象类,则该类必须实现指定接口的所有抽象方法;
    57. 接口的抽象方法的访问限制符默认为 public,在实现时要在方法头中显式地加上public修饰。
    1. 1、的输入输出类:
    2. InputStream OutputStream 面向字节,处理非文本文件
    3. Reader Writer 面向字符
    4. File
    5. 2、步骤:
    6. 1. 创建流对象
    7. 2. 用方法从流输入数据
    8. 3. close( )关闭流
    9. 3、面向字节{
    10. public int read() :读一个字节
    11. 1.
    12. FileInputStream infile = new FileInputStream(args[0]);
    13. int byteRead = infile.read(); 以字节为单位访问
    14. while (byteRead!=-1) {
    15. System.out.print((char)byteRead);
    16. byteRead = infile.read();
    17. }
    18. 2.
    19. FileInputStream infile = new FileInputStream(args[0]); 从命令行获取要显示的文件名
    20. BufferedInputStream buin=new BufferedInputStream(infile); 创建输入流
    21. byte[] buffer=new byte[64];
    22. int byteRead = buin.read(buffer);
    23. while (byteRead!=-1)
    24. { //判断是否读到文件的末尾
    25. String str=new String(buffer,0,byteRead); 读取的字节转换为字符
    26. System.out.print(str);
    27. //System.out.print((char)byteRead);
    28. byteRead = buin.read(buffer); read()方法读到文件结尾返回-1,读取文件时一个一个字节读入
    29. }
    30. buin.close();
    31. 输出:
    32. 1.
    33. FileOutputStream file = new FileOutputStream("x.dat"); 创建一个文件输出流,文件不存在则自动生成
    34. DataOutputStream out=new DataOutputStream(file); FileOutputStream包装,创建一个DataOutputStream流,利用该流向文件写入各种类型的数据
    35. out.writeInt(n); DataOutputStreamwriteInt方法,写入整数
    36. out.close();
    37. }
    38. 4、面向字符{
    39. 1.
    40. LineNumberReader in=new LineNumberReader(new FileReader("AddLineNo.java")); 从一个文本文件中读取数据加上行号后显示
    41. String x= in.readLine(); 利用LineNumberReaderreadLine()方法从文件逐行读取,末尾返回null
    42. 2.
    43. FileReader in = new FileReader("test13_4.java"); (单个字符读)
    44. int charRead = in.read();
    45. System.out.print((char) charRead);
    46. 3.
    47. BufferedReader in = new BufferedReader(new FileReader("test13_4.java"));
    48. String x = in.readLine();
    49. 输出
    50. 1.
    51. FileWriter out=new FileWriter("charset.txt ");
    52. for(int i=32;i<126;i++)
    53. //.write(i); 输出乱码
    54. out.write(Integer.toString(i)); 整型数字转换为字符串
    55. 读入并加上行号输出:{
    56. FileReader file= new FileReader("AddLineNo.java");
    57. FileWriter out=new FileWriter("target.txt");
    58. LineNumberReader in=new LineNumberReader(file);
    59. while (true)
    60. {
    61. String x= in.readLine();
    62. if (x == null)
    63. break;
    64. else
    65. out.write(in.getLineNumber()+":"+x+"\r\n");
    66. }
    67. out.close();
    68. }
    69. }
    70. 5、随机文件读写{
    71. BufferedReader in=new BufferedReader(new InputStreamReader(System.in)); 输入框输入
    72. String s=in.readLine();
    73. RandomAccessFile out=new RandomAccessFile(“java.log”,”rw”);
    74. out.seek(myFile.length()); //将指针定到文件尾
    75. out.writeBytes(s+”\n”); //写入数据
    76. out.close();
    77. }
    78. 6、对象串行化 ObjectOutputStream && ObjectInputStream {
    79. 1、写入文件
    80. ObjectOutputStream out=new ObjectOutputStream(new FileOutputStream("storedate.dat"));
    81. out.writeObject(new Date());
    82. out.writeObject("hello world");
    83. System.out.println("写入完毕");
    84. 2、读文件并显示
    85. ObjectInputStream in=new ObjectInputStream(new FileInputStream("storedate.dat"));
    86. Date current=(Date)in.readObject();
    87. System.out.println("日期:"+current);
    88. String str=(String)in.readObject();
    89. System.out.println("字符串:"+str);
    90. }