摘要:
表(一)Student (学生表) 表(一)Student中的数据 表(二)Course(课程表) 表(二)Course(课程表)中的数据 表(三)Score(成绩表) 表(三)Score(成绩表)中的数据 表(四)Teacher(教师表) 表(四)Teacher(教师表)中的数据 阅读全文
摘要:
1. Thread类 2.Runnable接口 XuanZeChengShi2 city1=new XuanZeChengShi2(); Thread t1 = new Thread(city1,"北京") ; t1.start(); XuanZeChengShi2 city2=new XuanZe 阅读全文
摘要:
package com.hanqi.io; import java.io.*; public class IoDemo { public static void main(String[] args) { try { File file=new File("d:/testRW.txt"); if(! 阅读全文
摘要:
package com.hanqi.io; import java.io.*; public class TextRW { public static void main(String[] args) { try { File file=new File("d:/testRW.txt"); if(! 阅读全文
摘要:
package lianxi; import java.util.*; public class JhSet { public static void main(String[] args) { Set<String> ss=new HashSet<>(); ss.add("A"); ss.add( 阅读全文
摘要:
import java.util.ArrayList; public class Bai { public static void main(String[] args) { ArrayList<Integer> a=new ArrayList<>(); for (int i = 0; i < 10 阅读全文
摘要:
public class Bank { Double qian=0.0; double newBank(double a) { qian=qian+a; return qian; } double withDrawal(double dAmount) throws Exception { ... 阅读全文
摘要:
package exception; public class TestException { public static void main(String[] args) { for(int i=0;i<4;i++) { try { int k; switch(i) { case 0: int z 阅读全文