摘要:
常用数组操作 //创建数组 //方法1 int[] a = {1,2,3}; //方法2 int[] b = new int[]{1,2,3}; //方法3 int[] c = new int[3]; for(int i=0;i<a.length;i++){ c[i] = i+1; } //方法4 阅读全文
摘要:
常用数组操作 //创建数组 //方法1 int[] a = {1,2,3}; //方法2 int[] b = new int[]{1,2,3}; //方法3 int[] c = new int[3]; for(int i=0;i<a.length;i++){ c[i] = i+1; } //方法4 阅读全文
摘要:
GUI学习完整文件地址https://github.com/asako98/gui-study.git import javax.swing.*; //游戏的主启动类 public class StartGame { public static void main(String[] args) { 阅读全文
摘要:
窗口面板 import javax.swing.*; import java.awt.*; public class JFrameDemo { public void init(){ //顶级窗口 JFrame jf= new JFrame("这是一个JFrame窗口"); jf.setVisibl 阅读全文
|