摘要:
1、引用数据类型 例子 动态初始化 int[] a = new int[10]; byte[] b = new byte[10]; 静态初始化 int[] a = new int[]{1, 2, 4}; int[] b = {1, 2, 4}; 2、结果 public static void mai 阅读全文
摘要:
注意:与方法的返回值类型无关 阅读全文
摘要:
package com.bd; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Properti 阅读全文
摘要:
for (int i=0; i<10; ){ } 2、for的多个条件 for(i=0, j=10; i>j; i++, j--){ } 阅读全文