




已阅读5页,还剩42页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1 以下选项哪个在编译时没有警告或错误 1 float f 1 3 2 char c a 3 byte b 257 4 boolean b null 5 int i 10 2 编译并运行下列代码 下列分析哪个正确 public class MyClass public static void main String arguments amethod arguments public void amethod String arguments System out println arguments System out println arguments 1 1 错误 不能在 static 方法中调用方法 void amethod 2 错误 主方法不正确 3 编译错误 数组必须包含参数 4 方法的返回值必须被声明为 String 类型 3 编译下列各组代码 哪个没有错误 A import java awt package Mypackage class Myclass B package MyPackage import java awt class MyClass C 这里是注释 package MyPackage import java awt class MyClass 1 A B 2 A C 3 B C 4 一个 byte 类型的数据的取值范围 1 128 to 127 2 2 power 8 1 to 2 power 8 3 255 to 256 4 取决于 java 虚拟机 5 以命令行方式运行下列代码 将看到什么样的输出 命令行 java myprog good morning public class myprog public static void main String argv System out println argv 2 1 myprog 2 good 3 morning 4 抛出异常 java lang ArrayIndexOutOfBoundsException 2 6 下列哪些是 java 语言的保留字 A if B then C goto D while E case 1 ABCE 2 ACDE 3 BCDE 4 ABCD 7 下列选项哪些是合法的保留字 A 2variable B variable2 C whatavariable D 3 E anothervar F myvar 1 ABDE 2 BCDE 3 CDEF 4 ABCE 8 编译并运行下列代码 将得到哪种输出 public class MyClass static int i public static void main String argv System out println i 1 错误 变量 i 没有被初始化 2 null 3 1 4 0 9 编译并运行下列代码 将会得到怎样结果 public class Q public static void main String argv int anar new int 1 2 3 System out println anar 1 1 1 2 错误 数组未被初始化 3 2 4 错误 数组未被定义大小 10 编译并运行下列代码 将会得到怎样结果 public class Q public static void main String argv int anar new int 5 System out println anar 0 1 错误 数组未被初始化 2 null 3 0 4 5 11 编译并运行下列代码 将会得到怎样结果 abstract class MineBase abstract void amethod static int i public class Mine extends MineBase public static void main String argv int ar new int 5 for i 0 i ar length i System out println ar i 1 输出 5 个 0 2 错误 数组未被初始化 3 错误 Mine 类必须被声明为 abstract 4 数组索引溢出 12 编译并运行下列代码 将会得到怎样结果 int i 1 switch i case 0 System out println zero break case 1 System out println one case 2 System out println two default System out println default 1 one 2 one default 3 one two default 4 default 13 编译并运行下列代码 将会得到怎样结果 int i 9 switch i default System out println default case 0 System out println zero break case 1 System out println one case 2 System out println two 1 default 2 default zero 3 错误 default 子句没定义 4 没有输出 14 编译并运行下列代码 哪一个没有错误 A int i 0 if i System out println Hello B boolean b true boolean b2 true if b b2 System out println So true C int i 1 int j 2 if i 1 j 2 System out println OK D int i 1 int j 2 if i 1 1 CD 2 AD 3 AB 4 BC 15 如果当前路径下没有文件 Hello txt 那么编译并运行下列代码 将会得到怎样结果 import java io public class Mine public static void main String argv Mine m new Mine System out println m amethod public int amethod try FileInputStream dis new FileInputStream Hello txt catch FileNotFoundException fne System out println No such file found return 1 catch IOException ioe finally System out println Doing finally return 0 1 No such file found 2 No such file found 1 3 No such file found doing finally 1 4 0 16 网页上加载 applet 需要使用哪些 Html 标签 1 name height width 2 code name 3 codebase height width 4 code height width 17 编译并运行下列代码 将会得到怎样结果 class Base class Sub extends Base class Sub2 extends Base public class CEx public static void main String argv Base b new Base Sub s Sub b 1 可以编译并运行 没有错误 2 编译时产生错误 3 运行时产生错误 18 如果下面的 Html 代码用于显示 applet 那么在控件台上我们能看到怎样输出 网页代码 类代码 import java applet import java awt public class MgAp extends Applet public void init System out println getParameter age 1 错误 没有参数 2 0 3 null 4 30 19 在查阅 java API 时 如果要查找关于 java awt TextField 组件的建立响应焦点事件的监听器的方 法 但只在方法列表中查到了 addActionListener 那么 怎样查到想查找的方法 1 按照处理事件的规范 自定义的监听器接口 2 使用查找工具在 API 文档中搜索 3 查找父类的方法列表 4 子类的 awt 事件会有适当的监听器的方法 20 编译并运行下列代码 将会得到怎样结果 import javax swing public class Butt extends JFrame public static void main String argv Butt MyBut new Butt Butt JButton HelloBut new JButton Hello JButton ByeBut new JButton Bye getContentPane add HelloBut getContentPane add ByeBut setSize 300 300 setVisible true 1 按钮 Hello 与按钮 Bye 充满 frame 并一左一右排列 2 只能看到一个 Hello 按钮 3 只能看到一个 Bye 按钮 4 按钮 Hello 与按钮 Bye 在 frame 上部一左一右排列 21 下面是一个 applet 代码段 如果没有名为 size 的参数 getParameter 方法将返回值 null 如果 tmp 为值为 null 用下面哪个逻辑运算符替换第 5 行的 X 以确保不会产生一个 NullPointerException 1 int sz 2 public void init 3 sz 10 4 String tmp getParameter size 5 if tmp null X tmp equals BIG sz 20 6 1 用 替换 2 用 替换 3 用 替换 4 用 替换 22 以下面三种形式分别给变量 C 赋值 哪种方式能在打印变量 C 时结果是 Not a Number 1 float C 1234 0F 0 0F 2 float C float java lang Math sqrt 1 0 3 float C Float MIN VALUE Float MAX VALUE 23 你在一个名为 MyClass java 的文件中设计一个类 若此类在一个很大的工程中 且想让此类能被 该工程中的所有类访问到 则以下声明正确的是哪个 A private class MyClass extends Object B class myclass extends Object C public class MyClass D public class MyClass extends Object 1 AD 2 BD 3 AC 4 CD 24 有些 Java 对象的内容不能修改 下面类中 哪些能够创建出这样的对象 A java lang Double B java lang StringBuffer C java lang Boolean D java lang Math 1 AC 2 AD 3 BC 4 BD 25 对于下面给出的类的定义 编译并执行下面代码段 哪些不会产生错误 1 class BaseWidget extends Object 2 String name BaseWidget 3 void speak System out println I am a name 4 5 class TypeAWidget extends BaseWidget 6 TypeAWidget name TypeA 7 1 Object A new BaseWidget A speak 2 BaseWidget B new TypeAWidget B speak 3 TypeAWidget C new BaseWidget C speak 26 下列选项 哪些不是用于修饰方法声明的关键字 A private B friend C protected D static E synchronized F generic 1 AB 2 BE 3 CF 4 BF 27 对于 Java 语言 下列哪些不能用于方法名的定义 A do it now B Substitute C 9thMethod D addMoney E getPath 1 CE 2 DE 3 AD 4 BC 28 对于下面给出的类 Demo 如果在构造一个 Demo 类的实例后马上调用方法 showCount 并传递一个数 字 9 作为参数 则下列描述正确的是 public class Demo private int count public Demo count new int 10 public void setCount int ct int n count n ct public void showCount int n System out println Count is count n public int getCount int n return count n 1 将抛出一个 NullPointerException 并终止程序运行 2 正常输出 Count is 0 3 将抛出一个 ArrayIndexOutOfBoundsException 并终止程序运行 4 正常输出 Count is null 29 编译并运行下列代码 将得到怎样结果 1 public class Example 2 public Boolean flags new Boolean 4 3 public static void main String args 4 Example E new Example 5 System out println Flag 1 is E flags 1 6 7 1 正常输出 Flag 1 is true 2 正常输出 Flag 1 is false 3 正常输出 Flag 1 is null 4 无法编译 30 以下代码段哪一段是合法的 java 代码 1 String A abcdefg A cde 2 String A abcdefg A cde 3 Integer J new Integer 27 J 7 4 Integer J new Integer 27 J 31 下面是关于 Demo 类的代码 在位置 XXXX 代表的是访问权限 选择一个访问权限 使字段 userName 可以在默认包及子类中可以直接访问 public class Demo extends Base XXXX String userName public void setName String s userName s public void showName System out println Name is userName public String getName return userName 1 public 2 blank ie the line would read String userName 3 protected 4 private 32 下面是一个应用程序中的一段代码段 1 public String setFileType String fname 2 int p fname indexOf 3 if p 0 fname fname substring 0 p 4 fname TXT 5 return fname 6 下面是程序中的另一部分代码段 7 String TheFile Program java 8 File F new File setFileType TheFile 9 System out println Created TheFile 在第 9 行将输出什么样的结果 1 Created Program java 2 Created Program txt 3 Created Program java txt 33 编译并运行下列代码 将得到怎样的结果 1 public class EqualsTest 2 public static void main String args 3 byte A byte 4096 4 if A 4096 System out println Equal 5 else System out println Not Equal 6 7 1 在第三行产生编译错误 2 正常编译执行 并输出 Not Equal 3 正常编译执行 并输出 Equal 34 编译并运行下列代码 将得到怎样的结果 1 public class EqualsTest 2 public static void main String args 3 Long LA new Long 7 4 Long LB new Long 7 5 if LA LB System out println Equal 6 else System out println Not Equal 7 8 1 能够编译 但运行时在第 5 行抛出异常 2 正常编译执行 并输出 Not Equal 3 正常编译执行 并输出 Equal 35 根据下面的 Demo 类的设计 判断下面并于变量 count 说法正确的是 public class Demo extends Base private int count public Demo System out println A Demo object has been created protected void addOne count A 当一个新的 Demo 对象被建立时 count 的值是 0 B 当一个新的 Demo 对象被建立时 count 未被赋值 C 一个父类的对象可以通过方法修改 count 的值 D 只能通过 addOne 方法修改 count 的值 1 AC 2 AB 3 BC 4 AD 36 下列表达式 哪一个或产生编译错误 A float F 4096 0 B double D 4096 0 C byte B 4096 D char C 4096 1 AC 2 BC 3 BD 4 CD 37 下面代码 第二行在 X 的位置上应该是一个逻辑运算符 应该选择下面哪项实现 短路测试 的条件判断 并且当参数 ob 不是一个 Long 的实例也能让该方法正常执行 1 long Test Object ob 2 if Ob instanceof Long X Long Ob longValue 999 3 return Long Ob longValue 4 5 return 1L 6 1 用 替换 X 2 用 替换 X 3 用 替换 X 4 用 替换 X 38 要判断 X 是否是 Not a Number 值 应采用下列哪种方式 1 if X instanceof Float NaN 2 if X Float NaN 3 if Float isNaN X 39 在 Java API 文档中 关于文档内容的组织原则 以下描述正确的是 1 方法在文档中的排列顺序是根据不同方法被使用的频率 2 一个类中按照方法名字母顺序排列 3 按照访问权限的不同 private protected public 40 编译下列代码 并以如下命令行方式运行 将会看到怎样结果 命令行 java Demo alpha beta gamma public class Demo public static void main String args int n 3 System out println The word is args n 1 将输出 The word is beta 2 将输出 The word is gamma 3 运行时将出现错误 ArrayIndexOutOfBoundsException 4 运行时将出现错误 NullPointerException 41 以下哪个表达式 是正确的声明整数数组的形式 A int scores B int scores C int scores 0 0 0 0 1 AB 2 AC 3 BC 42 假设下面代码正常编译并在当前路径下产生 Demo class 文件 public class Demo public static void main String args int n 1 System out println The word is args n 从下面选项中选择一个命令行 以使能得到这样的输出 The word is gamma 1 Demo alpha beta gamma delta 2 java Demo alpha beta gamma delta 3 java Demo beta gamma delta 4 java Demo class beta gamma delta 5 java Demo class alpha beta gamma delta 43 编译并运行下列代码 将会得到怎样结果 public class EqualsTest public static void main String args Object A new Long 7 Long L new Long 7 if A equals L System out println Equal else System out println Not Equal 1 正常编译并打印 Equal 2 正常编译并打印 Not Equal 3 在第 5 行发生编译错误 4 运行时 在第 5 行产生错误 44 编译下列代码 将会得到怎样的结果 public class SiteInfo String webSite default htm public String getSite return webSite 1 正常编译 2 在第二行产生编译错误 3 参第三行产生编译错误 45 假设你要作一个类 这个类在默认包中 它将使用一个 AWT 包中的一个 graphic 组件 那么这个类 的开头应该怎样写 代码段 A import java awt 代码段 B package default import java awt 代码段 C import java awt package default 1 代码段 A 2 代码段 B 3 代码段 C 46 以下是一个命名为 Derived java 文件的全部内容 编译该文件 将会得到怎样结果 1 public class Base extends Object 2 String objType 3 public Base objType I am a Base type 4 5 6 7 public class Derived extends Base 8 public Derived objType I am a Derived type 9 10 public static void main String args 11 Derived D new Derived 12 13 1 产生两个类文件 一个是 Base class 另一个是 Derived class 2 在第一行产生编译错误 3 在第七行产生编译错误 47 根据下列代码 判断运行结果 public class Test public static void main String args boolean a false if a true System out println Hello else System out println Goodbye 1 该程序没有输出 但能够正常终止 2 该程序不能终止 3 输出 Hello 4 输出 Gookbye 48 仔细观察仔细观察下列包含内部类的代码 选择一个最合适的结果 public final class Test4 implements A class Inner void test if Test4 this flag sample private boolean flag false public void sample System out println Sample public Test4 new Inner test public static void main String args new Test4 1 输出 Sample 2 没有输出 但能正常结束 3 不能正常结束 4 不能完成编译 49 仔细观察下面类 选择一个最合适的结果 public class Test5 public static void main String args 这是注释的起始部分 if true Test5 new test5 System out println Done the test 这里是另外一些注释 System out println The end 1 输出 Done the test 2 没有输出 但能正常结束 3 不能正常结束 4 不能完成编译 5 将产生一个运行时异常 6 输出 The end 50 下列代码定义一个简单的 applet 编译并运行这个 applet 将会得到怎样结果 import java applet Applet import java awt public class Sample extends Applet private String text Hello World public void init add new Label text public Sample String string text string 这是用于访问上面 applet 的页面 Sample Applet 1 输出 Hello World 2 产生一个运行时错误 3 没有任何显示 4 编译是将产生一个错误 51 仔细观察下面代码 public class Calc public static void main String args int total 0 for int i 0 j 10 total 30 i j System out println i i j j total i j System out println Total total 编译并运行上面代码 请选择一个最合适的答案 1 运行时产生错误 2 编译时产生错误 3 输出 Total 0 4 Generate the following as output 产生下面的输出 i 0 j 10 i 1 j 9 i 2 j 8 Total 30 52 我们可以利用下面哪个 IO 操作进行文件的增加 修改 1 RandomAccessFile 2 Outputstream 3 DataOutputstream 53 对于下面的类 用下面哪个选项替换 能够终止外部 outer 循环 class Loop public static void main String agrs int x 0 int y 0 outer for x 0 x 100 x middle for y 0 y 100 y System out println x x y y if y 10 main class 1 continue middle 2 break outer 3 break middle 4 continue outer 5 none of these 54 处理事件的方法中 参数代表什么 1 它是一个外部产生事件的组件传进来的事件对象 2 它是一个在处理完事件后 传出去的代表处理结果的事件对象 3 它是一个产生事件的对象 55 根据下面代码 判断哪一个表达式替换 能返回真 class StringTest public static void main String args String comparing String a b StringBuffer c d c new StringBuffer Hello a new String Hello b a d c if class A b equals a B b a C d c D d equals c E a equals b F c equals d 1 CDEF 2 BCDE 3 ACDF 4 ABCD 56 下面哪些是合法的变量名 A fred B fred C thisfred D 2fred E fred 1 AB 2 BC 3 CE 4 DE 5 CD 57 下面关键字在同一个 java 文件中 排列顺序正确的是 1 package import class 2 class import package 3 import package class 4 package class import 58 下面方法哪个能用于 String 类的对象 A equals String B equals Object C trim D round E toString 1 ABCD 2 ABCE 3 BCDE 59 下列表达式 哪些可以作为 java 程序中主方法的参数 A String args B String args C Strings args D String args 1 AB 2 AC 3 BC 4 BD 60 Java 语言中 主方法的参数是一个 String 数组 那么 该数组中的第零个元素是如何传递进来的 1 该程序的名字 2 参数的数量 3 执行 java 命令时的第一个参数 61 下面哪些是 Java 语言中的关键字 A goto B malloc C extends D FALSE 1 AB 2 AC 3 BC 4 BD 62 编译并运行下列代码 将会得到怎样的结果 public class Test public static void main String args int age age age 1 System out println The age is age 1 编译并运行 但是没有输出 2 编译并运行 打印 The age is 1 3 能够编译 但运行时将产生一个运行时错误 4 不能编译 63 给一个字符变量赋值 下面哪个是正确的形式 1 a 2 a 3 new Character a 4 t 64 下列哪些是 byte 类型的正确取值范围 1 0 65 535 2 128 127 3 32 768 32 767 4 256 255 65 下列表达式哪一个不正确 1 int i 32 2 float f 45 0 3 double d 45 0 66 编译并运行下列代码 将会得到怎样结果 public class Test static int age public static void main String args age age 1 System out println The age is age 1 可以编译 运行 但是没有输出 2 可以编译 运行 输出 The age is 1 3 可以编译 但在运行时将产生错误 4 不能编译 67 下列表达式哪个能够返回真 A john john B john equals john C john john D john equals new Button john 1 AB 2 AC 3 BC 4 BD 68 下列表达式哪个不能产生一个运行时错误 A john was here B john 3 C 3 5 D 5 E 5 null 1 ABCD 2 ABDE 3 BCDE 4 ABCE 69 下面哪个被称为短路操作符 A B Boolean flag true C Panel p new Frame D Frame f new Panel E Panel p new Applet 1 BCD 2 CDE 3 ACDE 4 AE 5 ABCDE 6 BD 71 编译并运行下列代码 将会得到怎样的结果 public class Test static int total 10 public static void main String args new Test public Test System out println In test System out println this int temp this total if temp 5 System out println temp 1 这个类不能编译 2 编译器将报告 在第二行存在错误 3 编译器将报告 在第九行存在错误 4 将有一个元素的值被输出 10 5 可以编译 但在运行时将产生一个运行时错误 72 下列代码哪些是正确的 1 String temp new String j a z 2 String temp j b c 3 String temp a b c 4 String temp a b c 73 下列关于抽象方法的定义 哪个正确 1 public abstract void add 2 public abstract void add 3 public abstract add 4 public virtual add 74 什么时候我们能够得到一个默认的构造器 1 当我们定义一个类的时候 2 当我们定义一个类并且这个类没有其他构造器的时候 3 当我们至少定义一个类的时候 75 对于下面这个类 以下选项中哪个可以作为该类的构造器 public class Test 1 public void Test 2 public Test 3 public static Test 4 public static void Test 76 下面代码 哪些可以编译通过 A if 2 3 System out println Hi B if 2 3 System out println Hi C if true System out println Hi D if 2 3 System out println Hi E if aString equals hello System out println Hi 1 ABCD 2 ABCE 3 ACDE 4 BCDE 77 在设计一个方法时 在该方法中的代码有可能会产生一个 Exception 但不是 RuntimeException 如何让调用该方法的人知道该方法有可能产生的异常 1 throw Exception 2 throws Exception 3 new Exception 4 不需特殊声明 78 编译 并以下面给出的参数运行下列代码 将会得到怎样的结果 参数 4 and 0 public void divide int a int b try int c a b catch Exception e System out print Exception finally System out println Finally 1 输出 Exception Finally 2 输出 Finally 3 输出 Exception 4 没有输出 79 对于下面方法 add int a 进行 overloading 在下列选项列举的返回值中选择一个最正确的 public void add int a 1 void 2 int 3 可以是任何类型 80 对于下面方法 add int a 进行 overriding 下面描述哪一个正确 public void add int a 1 对方法进行 overriding 则方法的返回值必须是 void 2 对方法进行 overriding 则方法的返回值必须是 int 3 对方法进行 overriding 则方法的返回值可以是任何类型 81 下面各类分别存在于不同的文件中 编译并运行类 Test 将会得到怎样的结果 class Vehicle public void drive System out println Vehicle drive class Car extends Vehicle public void drive System out println Car drive public class Test public static void main String args Vehicle v Car c v new Vehicle c new Car v drive c drive v c v drive 1 在表达式 v c 处将产生一个编译错误 2 在表达式 v c 处将产生一个运行错误 3 输出 Vehicle drive Car drive Car drive 4 输出 Vehicle drive Car drive Vehicle drive 82 在构造器中 要调用父类的构造器 下面描述正确的是 1 在构造器的任何位置 2 在构造器的第一行 3 在构造器的最后一行 4 不能调用父类的构造器 83 一个类的哪些变量可以被它的内部类访问到 A 所有 static 变量 B 所有 final 变量 C 所有字段 D 只有实例变量 E 只有 final static 变量 1 ABC 2 ABE 3 BCD 4 BCE 84 创建匿名内部类时 因为该类没有名字 在 new 时通常使用 父类 的名字 那么关于这个 父类 描述正确的是 1 必须是顶级类 2 必须是 Object 类 3 任何类或接口 4 必须继承一个接口 85 设计一个具有线程功能的类 我们需要实现下面哪个接口 1 Runnable 2 Run 3 Threadable 4 Thread 5 Executable 86 下面哪个方法用于启动一个线程 1 init 2 start 3 run 4 resume 5 sleep 87 下面哪些方法可以停止线程的运行 A sleep B stop C yield D wait E notify F notifyAll G synchronized 1 ABCD 2 BCDE 3 CDEF 4 ACEG 5 AEFG 88 下面选项哪些是 Graphics 类中的方法 A drawLine int int int int B drawImage Image int int ImageObserver C drawString String int int D add Component E setVisible boolean F setLayout Object 1 B 2 AE 3 ABC 4 CDEF 5 BCF 89 向下面布局管理器中添加组件 哪一个布局管理器会按照该组件的默认尺寸显示 1 CardLayout 2 FlowLayout 3 BorderLayout 4 GridLayout 90 仔细观察下列代码 判断当调用 add 方法并把 5 作为参数传递时 将会得到怎样结果 public class Test public void add int a loop for int i 1 i 3 i for int j 1 j 3 j if a 5 break loop System out println i j 1 运行时产生一个错误 2 抛出一个 ArrayIndexOutOfBoundsException 异常 3 输出 1 2 2 4 4 没有输出 91 当对一个线程调用 wait 方法 将会产生怎样的结果 1 如果该线程已经调用 notify 方法 那么该线程不会受到影响 2 被调用 wait 方法的线程将暂停运行 直到被别的线程唤醒 3 将抛出一个异常 4 被调用 wait 方法的线程能够自动与另一个对象保持同步 92 下面哪个方法用于改变容器的布局管理器 1 setLayout aLayoutManager 2 addLayout aLayoutManager 3 layout aLayoutManager 4 setLayoutManager aLayoutManager 93 使用流布局管理器的容器 下面哪个是正确的向其中添加组件的方法 1 add component 2 add Center component 3 add x y component 4 set component 94 对于一个能够产生 ActionEvent 的按钮 应该为它注册什么类型的监听器 即该监听器应该实现什 么接口 1 FocusListener 2 ComponentListener 3 WindowListener 4 ActionListener 5 ItemListener 95 下列对于监听器中的方法的返回类型描述正确的是 1 boolean 2 the type of event handled 3 void 4 Component 96 假设我们设计一个类 实现了 ActionListener 接口 那么我们通过什么方法把它注册给一个按钮 1 addListener 2 addActionListener 3 addButtonListener 4 setListener 97 当我们想主动调用 paint Graphics 方法时 下列哪个方法最合适 1 paint 2 repaint 3 paint Graphics 4 update Graphics 5 永远不应该主动调用 paint Graphics 方法 所有没有这样的方法 98 下列选项哪个定义了插入网页中的 applet 的参数 1 2 3 4 99 下列描述哪些可以创建一个 InputStreamReader A new InputStreamReader new FileInputStream data B new InputStreamReader new FileReader data C new InputStreamReader new BufferedReader data D new InputStreamReader data E new InputStreamReader System in 1 BE 2 AD 3 CE 4 AE 5 DE 100 我们可以使用 new FileWriter 方法 对参数指定的文件 report 构造一个输出流 假设在此之前 该文件 report 已经存在 那么下面选项描述正确的是 1 新的数据将在原有数据基础之上追加 2 原有数据将被新数据替换 3 对一个已存在的文件构造输出流 将会产生异常 4 新的数据将被随机写在文件中 101 假设通过 new Vector 5 10 方法建立一个集合 当向其中添加第 6 个元素后 以下描述正确的是 1 抛出
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 铁路改造工程环境影响报告书
- 2025年中国初级阅读真题及答案
- 新能源电池隔板加工制造项目建筑工程方案
- 高端医药中间体生产线建设项目技术方案
- 河北数学单招真题及答案
- 技术服务合同写作样式
- 光明区2024-2025学年第二学期三年级英语期末学业展示试卷及答案
- 商业办公空间租赁制式合同(含装修权属约定)
- 离婚后子女抚养责任及财产分割补充协议
- 棕榈油种植基地租赁合同范本:油脂加工与品牌合作
- MOOC 模拟电子电路实验-东南大学 中国大学慕课答案
- 多格列艾汀使用指南2024课件
- MOOC 创业基础-暨南大学 中国大学慕课答案
- GB/T 41666.4-2024地下无压排水管网非开挖修复用塑料管道系统第4部分:原位固化内衬法
- 云端药历健保署电子病历-慈济大学医学资讯学系
- 道路车辆 局域互联网络(LIN) 第3部分:协议规范
- 客户反馈管理方案处理客户反馈的有效举措
- 桩基工程施工总体部署
- 电梯故障分析报告
- 《春》专题探究课件(朗读的重音和停连)
- 电能质量技术监督培训课件
评论
0/150
提交评论