java技术博客
jsp博客
BlogJava
首页
新随笔
联系
聚合
管理
数据加载中……
Student.java
/** */
/**
* 我们设计的学生基本类
*/
class
Student
{
private
String strName
=
""
;
//
学生姓名
private
String strNumber
=
""
;
//
学号
private
String strSex
=
""
;
//
性别
private
String strBirthday
=
""
;
//
出生年月
private
String strSpeciality
=
""
;
//
专业
private
String strAddress
=
""
;
//
地址
private
double
totalScore;
//
学生的总分数
public
static
void
main(String[] args)
{
String[] course
=
{
"
计算机原理
"
,
"
编译方法
"
,
"
数据结构
"
}
;
Student one
=
new
Student(
"
Tom
"
,
"
20021024
"
);
one.setStudentCourse(course);
}
public
Student(String name, String number)
{
strName
=
name;
strNumber
=
number;
}
public
String getStudentName()
{
return
strName;
}
public
String getStudentNumber()
{
return
strNumber;
}
public
void
setStudentSex(String sex)
{
strSex
=
sex;
}
public
String getStudentSex()
{
return
strSex;
}
public
String getStudentBirthday()
{
return
strBirthday;
}
public
void
setStudentBirthday(String birthday)
{
strBirthday
=
birthday;
}
public
String getStudentSpeciality()
{
return
strSpeciality;
}
public
void
setStudentSpeciality(String speciality)
{
strSpeciality
=
speciality;
}
public
String getStudentAddress()
{
return
strAddress;
}
public
void
setStudentAddress(String address)
{
strAddress
=
address;
}
public
double
getStudentScore()
{
return
totalScore;
}
public
void
setStudentScore(
double
score)
{
totalScore
=
score;
}
public
String toString()
{
String information
=
"
学生姓名=
"
+
strName
+
"
, 学号=
"
+
strNumber;
if
(
!
strSex.equals(
""
) )
information
+=
"
, 性别=
"
+
strSex;
if
(
!
strBirthday.equals(
""
))
information
+=
"
, 出生年月=
"
+
strBirthday;
if
(
!
strSpeciality.equals(
""
) )
information
+=
"
, 专业=
"
+
strSpeciality;
if
(
!
strAddress.equals(
""
) )
information
+=
"
, 籍贯=
"
+
strAddress;
return
information;
}
public
void
setStudentCourse(String[] strCourse)
{
new
Course(strCourse);
}
//
内部课程类
private
class
Course
{
private
String[] strCourse;
//
学生课程的数组
private
int
courseNumber;
public
Course(String[] course)
{
strCourse
=
course;
courseNumber
=
course.length;
getDescription();
}
private
void
getCourse()
{
for
(
int
i
=
0
; i
<
courseNumber; i
++
)
{
System.out.print(
"
\t
"
+
strCourse[i]);
}
}
private
void
getDescription()
{
System.out.println(
"
学生:
"
+
Student.
this
.strName
+
"
学号是:
"
+
Student.
this
.strNumber
+
"
。 一共选了
"
+
courseNumber
+
"
门课,分别是:
"
);
getCourse();
}
}
}
posted on 2008-10-23 00:08
郭兴华
阅读(191)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
<
2008年10月
>
日
一
二
三
四
五
六
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
统计
随笔 - 84
文章 - 1
评论 - 2
引用 - 0
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔分类
java每日练习代码
(rss)
TESTARRAY(6)
(rss)
事件模型与事件处理
(rss)
随笔档案
2009年1月 (2)
2008年11月 (14)
2008年10月 (68)
文章档案
2008年10月 (1)
搜索
最新评论
1. re: jsp读取*.TXT
请问 retstr是什么数据类型?String?好像不行哦
--jsp
2. re: StudentTest1.java
看不懂你的意思,代码没有缩进,看着很不习惯那。
--杨爱友
阅读排行榜
1. java中的treemap(4597)
2. JDBC连接SQLSERVER(1819)
3. 判断一个一个路径是否是目录(1084)
4. jsp读取*.TXT(762)
5. java代理模式(726)
评论排行榜
1. StudentTest1.java(1)
2. jsp读取*.TXT(1)
3. java1.5注解(二)(0)
4. java1.5注解(一)(0)
5. jsp中使用类(0)