【单选题】(5-2)( )可以用来区别类中的重载方法。
【单选题】(7-1)有如下程序,在1处添加( )方法,编译时会产生错误。 class Good{ public float getNum(){ return 2.0f; } } public class Better extends Good { 1 }
【简答题】制作职教集团左侧导航,要求如下: 网页宽度 270px ,边框 1px ,颜色 E7E7E7 “集团动态”加边框高 50px ,字体微软雅黑, 20px ,背景色: 00B0FF li 加边框高 70px ,字体微软雅黑, 25px
【多选题】(7-9)( )方法可以加入1处后程序没有错误。 public interface MyInterface{ 1 }
【简答题】(7-9)请 简 单 介绍 JNI 。
【简答题】On 1 May 2012, Marchant made an award of 8,000 share options to each of its seven directors. The condition attached to the award is that the directors must remain employed by Marchant for three years. The fair value of each option at the grant date was $100 and the fair value of each option at 30 April 2014 was $110. At 30 April 2013, it was estimated that three directors would leave before the end of three years. Due to an economic downturn, the estimate of directors who were going to leave was revised to one director at 30 April 2014. The expense for the year as regards the share options had not been included in profit or loss for the current year and no directors had left by 30 April 2014. What are the accounting treatment then?
【单选题】(5-1)关于下面两条赋值语句, 正确的说法是 ( ) 。 int x =Integer. parseInt ( "9999" ); int y =Integer. valueOf ( "9999" ).intValue();
【其它】实验(第3周).doc
【单选题】(5-2)在 Java程序 中,一个类中可同时定义多个同名的成员方法,但这些同名方法的形式参数个数、类型或顺序不相同,这种面向对象程序特性称为 ( ) 。
【简答题】请用流程图表示防滑阀原理(无滑行状态):
【单选题】(7-2)super关键字表示( )。
【判断题】(7-16)对象的向上转型和向下转型都是Java系统自动完成的。
【简答题】请用流程图表示防滑阀原理(滑行状态):
【简答题】制作商品图片列表,效果如下:
【简答题】(7-8)请 解释 abstract 和 native 不能同时 修饰一个方法 的 原因。
【简答题】(7-11)请简要 说明 interface 和 abstract class 的 区别。(JDK 8之后)
【单选题】(8-2)类的成员变量设为 ( ) 时,其他类不能直接访问该类的成员变量。
【多选题】(5-2)下面( )说法是错误的。
【填空题】(8-2)如果在父类中声明的 方法采用public修饰,则子类重写该方法时需要采用的访问控制权限必须是( )。
【单选题】(7-2)super关键字表示( )。
【简答题】制作彩妆热卖产品列表,效果如下:
【简答题】制作搜狐品质生活页面,要求如下:
【单选题】(7-8)下面说法正确的是 ( ) 。
【单选题】(7-9)接口中合法的方法是( ) 。(JDK 8之前)
【其它】1.要求用户输入两个数a和b,如果a能被b整除或a加b大于1000,则输入a否则输出b
【单选题】(7-1)已知类 B 是类 C 的父类,则 不正确的语句是( )。
【单选题】(8-1)包在工程文件里面是一个( )。
【多选题】(7-3)关于final关键字的作用,叙述正确的是( )。
【简答题】(7-9)请列举匿名内部类实现 (implements) 接口 (interface) 的案例。
【简答题】2014 June&Dec/2015 June/2016 Sep&Dec 第一大题
【简答题】制作聚美优品商品分类,要求如下: 使用定义列表 dl- dt - dd 制作商品分类 使用 border 属性设置边框样式 使用 margin 和 padding 消除外边距和内边距 使用 background 设置页面背景
【简答题】制作聚美优品美容热点,效果如下:
【简答题】详见上传的PDF文档,自己用A4的纸做好后拍照上传。
【填空题】(10-1)下面代码定义了Window类,这个类的父类是( )。 class Window{ private double length; private double width; private Point location }
【单选题】(7-3)编译如下定义的MyString类,将出现( )。 class MyString extends java.lang.String{ }
【单选题】(7-9)接口中定义的成员方法是 ( ) 。(JDK 8之前)
【其它】第11次实验.doc
【多选题】(7-16)面向对象程序设计中,使用设计模式的作用包括( )。
【简答题】(7-7)请画出组成关系的UML类图,并用Java语言写出组成关系程序结构。
【其它】book.sql 数据库编程实验.doc
【单选题】(7-9)以下( )正确定义了接口。(JDK 8之前)
【其它】实验四.doc
【其它】写程序计算圆柱体的体积,输入圆柱体的半径和长度,然后显示计算结果。 area = radius * radius * π; volume = area * length;
【单选题】(7-2)编译并运行下面程序,以下描述哪个是正确的。( ) 1 class Cat{ 2 public String toString(){ 3 return super.toString(); 4 } 5 }
【简答题】完成课程导航页,要求如下: 使用 div 和列表制作课程导航 使用 border 属性设置边框样式 使用 margin 和 padding 消除外边距和内边距
【判断题】(7-8)抽象类能够用final来修饰。
【填空题】(7-1)如果定义的类没有使用 extends 关键字继承父类,则默认( )类是该类的父类 。
【判断题】(7-8)一个抽象类可以没有抽象方法。
【单选题】(6-2)在( )情况下调用构造方法。
【单选题】(7-8)下列( )叙述是正确的。