皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【简答题】
现有三个类,学生类( Student ),班级类( Classes ),教师类( Teach ),保存结构如下图 1 图 1 学生类、班级类、教师类结构 学生类结构如下: package com.bean; public class Student { private String name ; private String stuid ; private int age ; public void setName(String name ) { this . name = name ; } public void setStuid(String stuid ) { this . stuid = stuid ; } public void setAge( int age ) { this . age = age ; } public void display(){ System. out .println( " 我是一个学生 :\nname:" + name + "\nstuid:" + stuid + "\nage:" + age + "\n" ); } } 教师类如下: package com.bean; public class Teacher { private String t eachid; private String name ; private int age ; public void setTeachid(String teachid ) { this . teachid = teachid ; } public void setName(String name ) { this . name = name ; } public void setAge( int age ) { this . age = age ; } public void display(){ System. out .println( " 我是一个老师 :\nname:" + name + "\nteachid:" + teachid + "\nage:" + age + "\n" ); } } 班级类如下: package com.bean; public class Classes { private Student stu ; private Teacher teac ; public Student getStu() { return stu ; } public void setStu(Student stu ) { this . stu = stu ; } public Teacher getTeac() { return teac ; } public void setTeac(Teacher teac ) { this . teac = teac ; } public void display(){ stu .display(); teac .display(); } } 运行 Test.Java 程序,结果如图 2 。 图 2 程序运行结果 根据运行结果把下列代码补充完整: Spring.xml < beans xmlns = "http://www.springframework.org/schema/beans" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation = "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd" > < bean id = "stu" class = " 1 " > < property name = " 2 " > < value > < property name = " 3 " > < value > 18 < property name = " 4 " > < value > s1001 < bean id = "teac1" class = " 5 " > < property name = "name" > < value > 丰 < property name = "age" > < value > 45 < property name = "teachid" > < value > T20150901 < bean id = "cs" class = " 6 " > < property name = "stu" > 7 < property name = "teac" > 8 Test.java: package com.test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.bean.Classes; import com.bean.Student; import com.bean.Teacher; public class Test { public static void main(String[] args) { // TODO Auto-generated method stub ApplicationContext context=new 9 ; Classes cs=( 10 )context.getBean("cs"); cs.display(); } }
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【多选题】关于样式的描述,哪些是正确的
A.
外部样式定义在单独的样式文件中
B.
html 内联样式定义在网页文件的头部
C.
浏览器样式我们不能随便修改
D.
内部样式定义在网页文件的头部标签内
【单选题】哪个HTML属性可用来定义内联(行内)样式?( )
A.
font
B.
class
C.
styles
D.
style
【多选题】关于HTML的描述,哪些是正确的?( )
A.
HTML是超文本标记语言的缩
B.
HTML文件是包含标记标签的程序文件
C.
标记标签可让浏览器了解怎样去显示这个页面
D.
使用普通的文字编辑器可以建立HTML文件
【单选题】如图所示,RTA的G0/0/0和G0/0/1接口分别连接到两个不同的网段,RTA为这两个网络的网关。主机A在发送数据给主机C之前,会先发送ARPRequest来获取()的MAC地址。
A.
主机C
B.
RTA的G0/0/0接口
C.
RTA的G0/0/1接囗
D.
SWA
【多选题】关于样式的描述,哪些是正确的
A.
内部样式定义在网页文件的头部标签内
B.
外部样式定义在单独的样式文件中,用户需要在网页文件中引用该样式文件才能使用外部样式
C.
浏览器样式我们不能随便修改
D.
html 内联样式定义在网页文件的头部
【单选题】What happened after Louisa asked about Will’s accident?
A.
Will became furious and fired Louisa
B.
Will broke down and asked Louisa to leave
C.
Will asked Louisa to stay and talk more to him
【多选题】关于极性交叉,下列叙述正确的是:( )
A.
轨道电路的极性交叉是防护绝缘破损的一种措施
B.
在直流轨道电路中,轨道电路的极性交叉是绝缘节两侧的钢轨上电源极性相反
C.
在交流轨道电路中,轨道电路的极性交叉是绝缘节两侧的钢轨上电源相位相差 180 度
D.
站内轨道电路的极性交叉需要确定道岔的道岔绝缘的切割位置
【简答题】____v. to organize or make plans for sth. Such as a meeting, party or trip.
【单选题】哪个 HTML 标签属性可用来定义内联(行内)样式?
A.
font
B.
style
C.
styles
D.
class
【判断题】枯水是河流断面上较小流量的总称。当月平均水量占全年总水量的比例小于5%时,则属于枯水期。
A.
正确
B.
错误
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题