上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 表(一)Student (学生表) 表(一)Student中的数据 表(二)Course(课程表) 表(二)Course(课程表)中的数据 表(三)Score(成绩表) 表(三)Score(成绩表)中的数据 表(四)Teacher(教师表) 表(四)Teacher(教师表)中的数据 阅读全文
posted @ 2016-06-08 14:36 凌零聆 阅读(15529) 评论(0) 推荐(1) 编辑
摘要: 1. Thread类 2.Runnable接口 XuanZeChengShi2 city1=new XuanZeChengShi2(); Thread t1 = new Thread(city1,"北京") ; t1.start(); XuanZeChengShi2 city2=new XuanZe 阅读全文
posted @ 2016-06-03 20:36 凌零聆 阅读(1486) 评论(0) 推荐(0) 编辑
摘要: 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(! 阅读全文
posted @ 2016-05-31 16:05 凌零聆 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 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(! 阅读全文
posted @ 2016-05-31 15:49 凌零聆 阅读(203) 评论(0) 推荐(0) 编辑
摘要: package lianxi; import java.util.*; public class JhSet { public static void main(String[] args) { Set<String> ss=new HashSet<>(); ss.add("A"); ss.add( 阅读全文
posted @ 2016-05-29 21:19 凌零聆 阅读(770) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; public class Bai { public static void main(String[] args) { ArrayList<Integer> a=new ArrayList<>(); for (int i = 0; i < 10 阅读全文
posted @ 2016-05-28 16:46 凌零聆 阅读(226) 评论(0) 推荐(0) 编辑
摘要: public class Bank { Double qian=0.0; double newBank(double a) { qian=qian+a; return qian; } double withDrawal(double dAmount) throws Exception { ... 阅读全文
posted @ 2016-05-28 16:11 凌零聆 阅读(975) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2016-05-28 15:40 凌零聆 阅读(610) 评论(0) 推荐(0) 编辑
摘要: package a; import java.util.*; public class YiChang { public static void main(String[] args) { System.out.println("输入整数:"); try { Scanner a=new Scanne 阅读全文
posted @ 2016-05-27 18:35 凌零聆 阅读(405) 评论(0) 推荐(0) 编辑
摘要: m的值无限制时 阅读全文
posted @ 2016-05-27 14:22 凌零聆 阅读(538) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页