黑马程序员技术交流社区
标题:
咋么在CSDN 博客中插入代码呀 都快崩溃了!!
[打印本页]
作者:
逝风
时间:
2015-10-23 20:30
标题:
咋么在CSDN 博客中插入代码呀 都快崩溃了!!
咋么在CSDN 博客中插入代码呀 都快崩溃了!! 网上说 有一杆笔 哪里 怎么我就是找不到呀呀
作者:
逝风
时间:
2015-10-23 20:49
/*
验证TreeSet
*/
import java.util.*;
class TreeSetDemo
{
public static void main(String[] args)
{
TreeSet ts= new TreeSet();
ts.add("adf");
ts.add("addgdf");
ts.add("addfd");
ts.add("ad3e2d");
ts.add("adf");
Iterator it = ts.iterator();
while (it.hasNext())
{
System.out.println(it.next());
}
}
}
class Student
{
private String name;
private int age;
Student(String name,int age){
this.name=name;
this.age=age;
}
public int compareTo(object obj){
if (!(obj instanceof Student))
{
throw new RuntimeException("输入的不是学生");
}
Student s= (Student)obj;
System.out.println(this.name+"....compare...."s.name);
if (this.age>s.age)
{
return 1;
}
if (this.age<s.age)
{
return -1;
}
return this.name.compareTo(s.name);
}
}
复制代码
作者:
大凶之兆
时间:
2015-12-10 15:21
package cn.hebei.sjz_多态;
/*
* 多态的联系
*/
class Animal{
int age = 10;
public void load(){
System.out.println("叫");
}
public void eat(){
System.out.println("吃");
}
public static void method(){
System.out.println("父类的静态方法");
}
}
class Cat extends Animal{
int age = 18;
public void load(){
System.out.println("喵喵叫");
}
public void ti(){
System.out.println("尥蹶子");
}
public static void method(){
System.out.println("子类的静态方法");
}
}
public class Demo1 {
public static void main(String[] args) {
Animal a = new Cat();
System.out.println(a.age);
a.load();
a.eat();
//a.ti(); //错误,找不到符号
//调用静态方法,编译看左边,运行看左边,不是多态的体现
a.method();
}
}
复制代码
作者:
huaduwuzhe
时间:
2015-12-10 15:48
直接不能粘贴进编辑框吗
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2