java练习---10
Posted Mr、L
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java练习---10相关的知识,希望对你有一定的参考价值。
1 package cn.zrjh; 2 3 public class L { 4 5 public int id; 6 public String name; 7 public int age; 8 public String city; 9 public String introduce() { 10 return + id + ": 在下 " + name + ", 芳龄" + age + ", 家住" + city ; 11 } 12 13 14 }
1 package cn.zrjh; 2 3 public class Y { 4 5 public static void main(String[] args) { 6 L p1=new L(); 7 L p2=new L(); 8 L p3=new L(); 9 L p4=new L(); 10 p1.id=100000; p1.name="罗元昊"; p1.age=19; p1.city="418"; 11 p2.id=200000; p2.name="孔宏旭"; p2.age=18; p2.city="418"; 12 p3.id=300000; p3.name="于星晔"; p3.age=19; p3.city="418"; 13 p4.id=400000; p4.name="黄浩然"; p4.age=19; p4.city="418"; 14 System.out.println(p1.introduce()); 15 System.out.println(p2.introduce()); 16 System.out.println(p3.introduce()); 17 System.out.println(p4.introduce()); 18 19 } 20 21 }
以上是关于java练习---10的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段
java内存流:java.io.ByteArrayInputStreamjava.io.ByteArrayOutputStreamjava.io.CharArrayReaderjava.io(代码片段