03 2016 档案

摘要:package org.hanqi.thread; public class test04 extends Thread { public void run(){ for(int i=0;i<10;i++){ try { Thread.sleep(1000); } catch (Interrupte 阅读全文
posted @ 2016-03-15 15:45 lizhe313 阅读(110) 评论(0) 推荐(0) 编辑
摘要:package com.hanqi; import java.util.*; public class test07 { public static void main(String[] args) { Map<String,String> Emp=new HashMap<String,String 阅读全文
posted @ 2016-03-12 08:28 lizhe313 阅读(94) 评论(0) 推荐(0) 编辑
摘要:public class Father { public void FF1(){ System.out.println("我是FF1"); } public void FF2(){ System.out.println("我是FF2"); }} public class Son extends Fa 阅读全文
posted @ 2016-03-11 08:34 lizhe313 阅读(99) 评论(0) 推荐(0) 编辑
摘要:package com.hanqi; public class shuiGuo { private String color; private double price; public String getColor() { return color; } public void setColor( 阅读全文
posted @ 2016-03-08 08:36 lizhe313 阅读(167) 评论(0) 推荐(0) 编辑
摘要:package com.hanqi; public class shuiGuo { private String color; private double price; public String getColor() { return color; } public void setColor( 阅读全文
posted @ 2016-03-08 08:35 lizhe313 阅读(152) 评论(0) 推荐(0) 编辑
摘要:package com.hanqi;class juXing{ int chang; int kuan; public juXing(int chang,int kuan){ this.chang=chang; this.kuan=kuan; } public double mianJi(){ re 阅读全文
posted @ 2016-03-05 08:42 lizhe313 阅读(209) 评论(0) 推荐(0) 编辑
摘要:package com.hanqi; import java.util.Scanner; public class test02 { public static void main(String[] args) { System.out.println("请您的数字:"); Scanner sc=n 阅读全文
posted @ 2016-03-02 10:54 lizhe313 阅读(109) 评论(0) 推荐(0) 编辑