久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

java storedmap_SCJP模拟题

發(fā)布時(shí)間:2023/12/10 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java storedmap_SCJP模拟题 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

scjp模擬試題(一)

Question No: 1

1.public class test (

2. public static void main (String args[]) {

3. int i = 0xFFFFFFF1;

4. int j = ~i;

5.

6. }

7. )

What is the decimal value of j at line 5?

A. 0

B. 1

C. 14

D. –15

E. An error at line 3 causes compilation to fail.

F. An error at line 4 causes compilation to fail.

答案: C

Question No: 2

Given:

Integer i = new Integer (42);

Long 1 = new Long (42);

Double d = new Double (42.0);

Which two expressions evaluate to True? (Choose Two)

A. (i ==1)

B. (i == d)

C. (d == 1)

D. (i.equals (d))

E. (d.equals (i))

F. (i.equals (42))

答案: D, E

Question No: 3

Exhibit :

1. public class test (

2. private static int j = 0;

3.

4. private static boolean methodB(int k) (

5. j += k;

6. return true;

6. )

7.

8. public static void methodA(int i) {

9. boolean b:

10. b = i < 10 | methodB (4);

11. b = i < 10 || methodB (8);

12. }

13.

14. public static void main (String args[] ) (

15. methodA (0);

16. system.out.printIn(j);

17. )

18. )

What is the result?

A. The program prints “0”

B. The program prints “4”

C. The program prints “8”

D. The program prints “12”

E. The code does not complete.

答案: B

Question No: 4

Given

1. Public class test (

2. Public static void main (String args[]) (

3. System.out.printIn (6 ^ 3);

4. )

5. )

What is the output?

答案: 5

Question No: 5

Given:

1. public class Foo {

2. public static void main (String [] args) {

3. StringBuffer a = new StringBuffer (“A”);

4. StringBuffer b = new StringBuffer (“B”);

5. operate (a,b);

6. system.out.printIn{a + “,” +b};

7. }

8. static void operate (StringBuffer x, StringBuffer y) {

9. x.append {y};

10. y = x;

11. }

12. }

What is the result?

A. The code compiles and prints “A,B”.

B. The code compiles and prints “A,A”.

C. The code compiles and prints “B,B”.

D. The code compiles and prints “AB,B”.

E. The code compiles and prints “AB,AB”.

F. The code does not compile because “+” cannot be overloaded for StringBuffer.

答案: D

Question No: 6

Exhibit:

1. Public class test (

2. Public static void stringReplace (String text) (

3. Text = text.replace (‘j’ , ‘i’);

4. )

5.

6. public static void bufferReplace (StringBuffer text) (

7. text = text.append (“C”)

8. )

9.

10. public static void main (String args[]) (

11. String textString = new String (“java”);

12. StringBuffer text BufferString = new StringBuffer (“java”);

13.

14. stringReplace (textString);

15. BufferReplace (textBuffer);

16.

17. System.out.printIn (textString + textBuffer);

18. )

19. )

What is the output?

答案: JAVAJAVA

Question No: 7

Exhibit:

1. public class test {

2. public static void add3 (Integer i) }

3. int val = i.intValue ( );

4. val += 3;

5. i = new Integer (val);

6. )

7.

8. public static void main (String args [ ] ) {

9. Integer i = new Integer (0);

10. add3 (i);

11. system.out.printIn (i.intValue ( ) );

12. }

13. )

What is the result?

A. Compilation will fail.

B. The program prints “0”.

C. The program prints “3”.

D. Compilation will succeed but an exception will be thrown at line 3.

答案: B

Question No: 8

Given:

1. public class ConstOver {

2. public ConstOver (int x, int y, int z) {

3. }

4. }

Which two overload the ConstOver constructor? (Choose Two)

A. ConstOver ( ) { }

B. Protected int ConstOver ( ) { }

C. Private ConstOver (int z, int y, byte x) { }

D. Public Object ConstOver (int x, int y, int z) { }

E. Public void ConstOver (byte x, byte y, byte z) { }

答案: A, C

Question No: 9

Given:

1. public class MethodOver {

2. public void setVar (int a, int b, float c) {

3. }

4. }

Which two overload the setVar method? (Choose Two)

A. Private void setVar (int a, float c, int b) { }

B. Protected void setVar (int a, int b, float c) { }

C. Public int setVar (int a, float c, int b) (return a;)

D. Public int setVar (int a, int b, float c) (return a;)

E. Protected float setVar (int a, int b, float c) (return c;)

答案: A, C

Question No: 10

Given:

1. class BaseClass {

2. Private float x = 1.0f ;

3. protected float getVar ( ) ( return x;)

4. }

5. class Subclass extends BaseClass (

6. private float x = 2.0f;

7. //insert code here

8. )

Which two are valid examples of method overriding? (Choose Two)

A. Float getVar ( ) { return x;}

B. Public float getVar ( ) { return x;}

C. Float double getVar ( ) { return x;}

D. Public float getVar ( ) { return x;}

E. Public float getVar (float f ) { return f;}

答案: B, D

Question No: 11

Which two demonstrate an “is a” relationship? (Choose Two)

A. public interface Person { }

public class Employee extends Person { }

B. public interface Shape { }

public class Employee extends Shape { }

C. public interface Color { }

public class Employee extends Color { }

D. public class Species { }

public class Animal (private Species species;)

E. interface Component { }

Class Container implements Component (

Private Component[ ] children;

)

答案: D, E

Question No: 12

Which statement is true?

A. An anonymous inner class may be declared as final.

B. An anonymous inner class can be declared as private.

C. An anonymous inner class can implement multiple interfaces.

D. An anonymous inner class can access final variables in any enclosing scope.

E. Construction of an instance of a static inner class requires an instance of the enclosing outer class.

答案: D

Question No 13

Given:

1. package foo;

2.

3. public class Outer (

4. public static class Inner (

5. )

6. )

Which statement is true?

A. An instance of the Inner class can be constructed with “new Outer.Inner ()”

B. An instance of the inner class cannot be constructed outside of package foo.

C. An instance of the inner class can only be constructed from within the outer class.

D. From within the package bar, an instance of the inner class can be constructed with “new inner()”

答案: A

Question No 14

Exhibit:

1. public class enclosingone (

2. public class insideone{}

3. )

4. public class inertest(

5. public static void main (string[]args)(

6. enclosingone eo= new enclosingone ();

7. //insert code here

8. )

9. )

Which statement at line 7 constructs an instance of the inner class?

A. InsideOnew ei= eo.new InsideOn();

B. Eo.InsideOne ei = eo.new InsideOne();

C. InsideOne ei = EnclosingOne.new InsideOne();

D. EnclosingOne.InsideOne ei = eo.new InsideOne();

答案: D

Question No 15

Exhibit:

1. interface foo {

2. int k = 0;

3. }

4.

5. public class test implements Foo (

6. public static void main(String args[]) (

7. int i;

8. Test test = new test ();

9. i= test.k;

10.i= Test.k;

11.i= Foo.k;

12.)

13.)

14.

What is the result?

A. Compilation succeeds.

B. An error at line 2 causes compilation to fail.

C. An error at line 9 causes compilation to fail.

D. An error at line 10 causes compilation to fail.

E. An error at line 11 causes compilation to fail.

答案: A

Question No 16

Given:

1. //point X

2. public class foo (

3. public static void main (String[]args) throws Exception {

4. printWriter out = new PrintWriter (new

5. java.io.outputStreamWriter (System.out), true;

6. out.printIn(“Hello”);

7. )

8. }

Which statement at PointX on line 1 allows this code to compile and run?

A. Import java.io.PrintWriter;

B. Include java.io.PrintWriter;

C. Import java.io.OutputStreamWriter;

D. Include java.io.OutputStreamWriter;

E. No statement is needed.

答案: A

Question No 17

Which two statements are reserved words in Java? (Choose Two)

A. Run

B. Import

C. Default

D. Implement

答案: B, C

Question No 18

Which three are valid declarations of a float? (Choose Three)

A. Float foo = -1;

B. Float foo = 1.0;

C. Float foo = 42e1;

D. Float foo = 2.02f;

E. Float foo = 3.03d;

F. Float foo = 0x0123;

答案: A, D, F

Question No 19

Leading the way in IT testing and certification tools, www.testking.com

Question No 19

Given:

8. int index = 1;

9. boolean[] test = new Boolean[3];

10. boolean foo= test [index];

What is the result?

A. Foo has the value of 0.

B. Foo has the value of null.

C. Foo has the value of true.

D. Foo has the value of false.

E. An exception is thrown.

F. The code will not compile.

答案: D

Question No 20

Given:

1. public class test(

2. public static void main(string[]args){

3. string foo = args [1];

4. string foo = args [2];

5. string foo = args [3];

6. }

7. )

And command line invocation:

Java Test red green blue

What is the result?

A. Baz has the value of “”

B. Baz has the value of null

C. Baz has the value of “red”

D. Baz has the value of “blue”

E. Bax has the value of “green”

F. The code does not compile.

G. The program throws an exception.

答案: G

Question No 21

Given:

8. int index = 1;

9. int [] foo = new int [3];

10.int bar = foo [index];

11.int baz = bar + index;

What is the result?

A. Baz has the value of 0

B. Baz has the value of 1

C. Baz has the value of 2

D. An exception is thrown.

E. The code will not compile.

答案: B

Question No 22

Given:

1. public class foo {

2. public static void main (String[]args) {

3. String s;

4. system.out.printIn (“s=” + s);

5. }

6. }

What is the result?

A. The code compiles and “s=” is printed.

B. The code compiles and “s=null” is printed.

C. The code does not compile because string s is not initialized.

D. The code does not compile because string s cannot be referenced.

E. The code compiles, but a NullPointerException is thrown when toString is called.

答案: C

Question No 23

Which will declare a method that forces a subclass to implement it?

A. Public double methoda();

B. Static void methoda (double d1) {}

C. Public native double methoda();

D. Abstract public void methoda();

E. Protected void methoda (double d1){}

答案: D

Question No 24

You want subclasses in any package to have access to members of a superclass. Which is the most

restrictive access modifier that will accomplish this objective?

A. Public

B. Private

C. Protected

D. Transient

E. No access modifier is qualified

答案: C

Question No 25

Given:

1. abstract class abstrctIt {

2. abstract float getFloat ();

3. }

4. public class AbstractTest extends AbstractIt {

5. private float f1= 1.0f;

6. private float getFloat () {return f1;}

7. }

What is the result?

A. Compilation is successful.

B. An error on line 6 causes a runtime failure.

C. An error at line 6 causes compilation to fail.

D. An error at line 2 causes compilation to fail.

答案: C

Question No 26

Exhibit:

1. public class test(

2. public int aMethod()[

3. static int i=0;

4. i++;

5. return I;

6. ]

7. public static void main (String args[]){

8. test test = new test();

9. test.aMethod();

10.int j = test.aMethod();

11.System.out.printIn(j);

12.}

13.)

What is the result?

A. Compilation will fail.

B. Compilation will succeed and the program will print “0”

C. Compilation will succeed and the program will print “1”

D. Compilation will succeed and the program will print “2”

答案: D

Question No 27

Given:

1. class super {

2. public float getNum() {return 3.0f;}

3. }

4.

5. public class Sub extends Super {

6.

7. }

Which method, placed at line 6, will cause a compiler error?

A. Public float getNum() {return 4.0f; }

B. Public void getNum () { }

C. Public void getNum (double d) { }

D. Public double getNum (float d) {retrun 4.0f; }

答案: B

Question No 28

Which declaration prevents creating a subclass of an outer class?

A. Static class FooBar{}

B. Private class FooBar{}

C. Abstract public class FooBar{}

D. Final public class FooBar{}

E. Final abstract class FooBar{}

答案: D

Question No 29

Given:

1. byte [] arry1, array2[];

2. byte array3 [][];

3. byte[][] array4;

If each array has been initialized, which statement will cause a compiler error?

A. Array2 = array1;

B. Array2 = array3;

C. Array2 = array4;

D. Both A and B

E. Both A and C

F. Both B and C

答案: F

Question No 30

Exhibit:

1. class super (

2. public int I = 0;

3.

4. public super (string text) (

5. I = 1

6. )

7. )

8.

9. public class sub extends super (

10. public sub (string text) (

11. i= 2

12. )

13.

14. public static void main (straing args[]) (

15. sub sub = new sub (“Hello”);

16. system.out. PrintIn(sub.i);

17. )

18. )

What is the result?

A. Compilation will fail.

B. Compilation will succeed and the program will print “0”

C. Compilation will succeed and the program will print “1”

D. Compilation will succeed and the program will print “2”

答案: A

Question No 31

Given:

1. public class returnIt (

2. returnType methodA(byte x, double y) (

3. return (short) x/y * 2;

4. )

5. )

What is the valid returnType for methodA in line 2?

A. Int

B. Byte

C. Long

D. Short

E. Float

F. Double

答案: F

Question No 32

Given the ActionEvent, which method allows you to identify the affected component?

A. GetClass.

B. GetTarget.

C. GetSource.

D. GetComponent.

E. GetTargetComponent.

答案: C

Question No 33

Which is a method of the MouseMotionListener interface?

A. Public void mouseMoved(MouseEvent)

B. Public boolean mouseMoved(MouseEvent)

C. Public void mouseMoved(MouseMotionEvent)

D. Public boolean MouseMoved(MouseMotionEvent)

E. Public boolean mouseMoved(MouseMotionEvent)

答案: A

Question No 34

Exhibit:

1. import java.awt*;

2.

3. public class X extends Frame (

4. public static void main(string []args) (

5. X x = new X ();

6. X.pack();

7. x.setVisible(true);

8. )

9.

10. public X () (

11. setlayout (new GridLayout (2,2));

12.

13. Panel p1 = new panel();

14. Add(p1);

15. Button b1= new Button (“One”);

16. P1.add(b1);

17.

18. Panel p2 = new panel();

19. Add(p2);

20. Button b2= new Button (“Two”);

21. P2.add(b2);

22.

23. Button b3= new Button (“Three”);

24. add(b3);

25.

26. Button b4= new Button (“Four”);

27. add(b4);

28. )

29. )

Which two statements are true? (Choose Two)

A. All the buttons change height if the frame height is resized.

B. All the buttons change width if the Frame width is resized.

C. The size of the button labeled “One” is constant even if the Frame is resized.

D. Both width and height of the button labeled “Three” might change if the Frame is resized.

答案: C, D

Question No 35

You are assigned the task of building a panel containing a TextArea at the top, a label directly below it,

and a button directly below the label. If the three components are added directly to the panel. Which

layout manager can the panel use to ensure that the TextArea absorbs all of the free vertical space when

the panel is resized?

A. GridLayout.

B. CardLayout.

C. FlowLayout.

D. BorderLayout.

E. GridBagLayout.

答案: E

Question No 36

Which gets the name of the parent directory file “file.txt”?

A. String name= File.getParentName(“file.txt”);

B. String name= (new File(“file.txt”)).getParent();

C. String name = (new File(“file.txt”)).getParentName();

D. String name= (new File(“file.txt”)).getParentFile();

E. Directory dir=(new File (“file.txt”)).getParentDir();

String name= dir.getName();

答案: B

Question No 37

Which can be used to encode charS for output?

A. Java.io.OutputStream.

B. Java.io.OutputStreamWriter.

C. Java.io.EncodeOutputStream.

D. Java.io.EncodeWriter.

E. Java.io.BufferedOutputStream.

答案: B

Question No 38

The file “file.txt” exists on the file system and contsins ASCII text.

Given:

38. try {

39. File f = new File(“file.txt”);

40. OutputStream out = new FileOutputStream(f, true);

41. }

42. catch (IOException) {}

What is the result?

A. The code does not compile.

B. The code runs and no change is made to the file.

C. The code runs and sets the length of the file to 0.

D. An exception is thrown because the file is not closed.

E. The code runs and deletes the file from the file system.

答案: A

Question No 39

Which constructs a DataOutputStream?

A. New dataOutputStream(“out.txt”);

B. New dataOutputStream(new file(“out.txt”));

C. New dataOutputStream(new writer(“out.txt”));

D. New dataOutputStream(new FileWriter(“out.txt”));

E. New dataOutputStream(new OutputStream(“out.txt”));

F. New dataOutputStream(new FileOutputStream(“out.txt”));

答案: F

Question No 40

What writes the text “” to the end of the file “file.txt”?

A. OutputStream out= new FileOutputStream (“file.txt”);

Out.writeBytes (“/n”);

B. OutputStream os= new FileOutputStream (“file.txt”, true);

DataOutputStream out = new DataOutputStream(os);

out.writeBytes (“/n”);

C. OutputStream os= new FileOutputStream (“file.txt”);

DataOutputStream out = new DataOutputStream(os);

out.writeBytes (“/n”);

D. OutputStream os= new OutputStream (“file.txt”, true);

DataOutputStream out = new DataOutputStream(os);

out.writeBytes (“/n”);

答案: B

Question No 41

Given:

1. public class X (

2. public object m () {

3. object o = new float (3.14F);

4. object [] oa = new object [1];

5. oa[0]= o;

6. o = null;

7. return oa[0];

8. }

9. )

When is the float object created in line 3, eligible for garbage collection?

A. Just after line 5

B. Just after line 6

C. Just after line 7 (that is, as the method returns)

D. Never in this method.

答案: D

Question No 42

Given:

3. string foo = “ABCDE”;

4. foo.substring(3);

5. foo.concat(“XYZ”);

6.

Type the value of foo at line 6.

答案: ABCDE

Question No 43

Which method is an appropriate way to determine the cosine of 42 degrees?

A. Double d = Math.cos(42);

B. Double d = Math.cosine(42);

C. Double d = Math.cos(Math.toRadians(42));

D. Double d = Math.cos(Math.toDegrees(42));

E. Double d = Math.cosine(Math.toRadians(42));

答案: C

Question No 44

You need to store elements in a collection that guarantees that no duplicates are stored and all elements

can be accessed in natural order. Which interface provides that capability?

A. Java.util.Map.

B. Java.util.Set.

C. Java.util.List.

D. Java.util.StoredSet.

E. Java.util.StoredMap.

F. Java.util.Collection.

答案: D

Question No 45

Which statement is true for the class java.util.HashSet?

A. The elements in the collection are ordered.

B. The collection is guaranteed to be immutable.

C. The elements in the collection are guaranteed to be unique.

D. The elements in the collection are accessed using a unique key.

E. The elements in the collections are guaranteed to be synchronized.

答案: C

Question No 46

Given:

1. public class IfTest (

2. public static void main(string[]args) {

3. int x = 3;

4. int y = 1;

5. if (x = y)

6. system.out.printIn(“Not equal”);

7. else

8. system.out.printIn(“Equal”);

9. }

10. )

What is the result?

A. The output is “Equal”

B. The output in “Not Equal”

C. An error at line 5 causes compilation to fall.

D. The program executes but does not print a message.

答案: C

Question No 47

Exhibit:

1. public class test (

2. public static void main(string args[]) {

3. int 1= 0;

4. while (i) {

5. if (i==4) {

6. break;

7. }

8. ++i;

9. }

10.

11. }

12. )

What is the value of i at line 10?

A. 0

B. 3

C. 4

D. 5

E. The code will not compile.

答案: E

Question No 48

Given:

3. int i= 1, j= 10 ;

4. do (

5. if (i++> --j) continue;

6. ) while (i<5);

After execution, what are the values for I and j?

A. i = 6 and j= 5

B. i = 5 and j= 5

C. i = 6 and j= 4

D. i = 5 and j= 6

E. i = 6 and j= 6

答案: D

Question No 49

Given:

1. switch (i) {

2. default:

310-025

Leading the way in IT testing and certification tools, www.testking.com

- 27 -

3. System.out.printIn(“Hello”);

4. }

What are the two acceptable types for the variable i? (Choose Two)

A. Char

B. Byte

C. Float

D. Double

E. Object

答案: A, B

Question No 50

Given:

1. public class foo {

2. public static void main (string[]args)

3. try {return;}

4. finally {system.out.printIn(“Finally”);}

5. }

6. }

What is the result?

A. The program runs and prints nothing.

B. The program runs and prints “Finally”

C. The code compiles, but an exception is thrown at runtime.

D. The code will not compile because the catch block is missing.

答案: B

Question No 51

51. Which correctly create an array of five empty Strings?

A. String a[] = new String[5];

for (int i=0;i<5;a[i++]=””);

B. String a []={“”,””,””,””,””};

C. String a[5];

D. String [5] a;

E. String [] a = new String[5];

for (int i = 0 ;i<5;a[i++] = null);

答案:A、B

Question No 52

52. Which cannot be added to a Container?

A. an Applet

B. a Component

C. a Container

D. a MenuComponent

E. a panel

答案:D

Question No 53

53. Which is the return value of Event listener?s method?

A. String B. AWTEvent C. void D. int

答案:C

Question No 54

54. If we implements MouseListener, which is corrected argument of its method? (short answer)

答案: MouseEvent

Question No 55

55. Use the operator “>>” and “>>>”. Which statement is true?

A. 1010 0000 0000 0000 0000 0000 0000 0000 >> 4 give

0000 1010 0000 0000 0000 0000 0000 0000

B. 1010 0000 0000 0000 0000 0000 0000 0000 >> 4 give

1111 1010 0000 0000 0000 0000 0000 0000

C. 1010 0000 0000 0000 0000 0000 0000 0000 >>> 4 give

0000 1010 0000 0000 0000 0000 0000 0000

D. 1010 0000 0000 0000 0000 0000 0000 0000 >>> 4 give

1111 1010 0000 0000 0000 0000 0000 0000

答案: B、C

Question No 56

56. Give following fragment.

Outer: for(int i=0; i<3; i++)

inner:for(int j=0;j<3;j++){

If(j>1)break outer;

System.out.println(j+”and”+i);

}

Which will be output?

A. 0 and 0 B. 0 and 1 C. 0 and 2 D. 0 and 3

E. 1 and 0 F. 1 and 1 G. 1 and 2 H. 1 and 3

I. 2 and 0 J. 2 and 1 K. 2 and 2 L. 2 and 3

答案: A、E

Question No 57

57. Examine the following code which includes an inner class:

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();

}

}

What is the result:

A.Print out “Sample”

B.Program produces no output but termiantes correctly.

C. Program does not terminate.

D.The program will not compile

答案:A

Question No 58

58. What is written to the standard output given the following statement:

System.out.println(4|7);

Select the right answer:

A.4

B.5

C.6

D.7

E.0

答案:D

Question No 59

59. Look the inheritance relation:

person

|

----------------

| |

man woman

In a source of java have the following line:

person p=new man();

What statement are corrected?

A. The expression is illegal.

B. Compile corrected but running wrong.

C. The expression is legal.

D. Will construct a person?s object.

答案:C

Question No 60

60. Look the inheritance relation:

person

|

----------------

| |

man woman

In a source of java have the following line:

woman w=new man():

What statement are corrected?

A. The expression is illegal.

B. Compile corrected but running wrong.

C. The expression is legal.

D. Will construct a woman object.

答案:A

Question No 61

61. Which can NOT be used in declaring or declaring and initializing an automatic (method local) variable?

A. final

B. static

C. expressions

D. Constants of non-primitive type

E. initialized arrays (such as “ {“Hello”,”Good bye”}”).

答案:B

scjp模擬試題(二)

Question No: 1

public class test (

2. public static void main (String args[]) {

3. int i = 0xFFFFFFF1;

4. int j = ~i;

5.

6. }

7. )

What is the decimal value of j at line 5?

A. 0

B. 1

C. 14

D. –15

E. An error at line 3 causes compilation to fail.

F. An error at line 4 causes compilation to fail.

答案: C

Question No: 2

Given:

Integer i = new Integer (42);

Long 1 = new Long (42);

Double d = new Double (42.0);

Which two expressions evaluate to True? (Choose Two)

A. (i ==1)

B. (i == d)

C. (d == 1)

D. (i.equals (d))

E. (d.equals (i))

F. (i.equals (42))

答案: D, E

Question No: 3

Exhibit :

1. public class test (

2. private static int j = 0;

3.

4. private static boolean methodB(int k) (

5. j += k;

6. return true;

6. )

7.

8. public static void methodA(int i) {

9. boolean b:

10. b = i < 10 | methodB (4);

11. b = i < 10 || methodB (8);

12. }

13.

14. public static void main (String args[] ) (

15. methodA (0);

16. system.out.printIn(j);

17. )

18. )

What is the result?

A. The program prints “0”

B. The program prints “4”

C. The program prints “8”

D. The program prints “12”

E. The code does not complete.

答案: B

Question No: 4

Given

1. Public class test (

2. Public static void main (String args[]) (

3. System.out.printIn (6 ^ 3);

4. )

5. )

What is the output?

答案: 5

Question No: 5

Given:

1. public class Foo {

2. public static void main (String [] args) {

3. StringBuffer a = new StringBuffer (“A”);

4. StringBuffer b = new StringBuffer (“B”);

5. operate (a,b);

6. system.out.printIn{a + “,” +b};

7. }

8. static void operate (StringBuffer x, StringBuffer y) {

9. x.append {y};

10. y = x;

11. }

12. }

What is the result?

A. The code compiles and prints “A,B”.

B. The code compiles and prints “A,A”.

C. The code compiles and prints “B,B”.

D. The code compiles and prints “AB,B”.

E. The code compiles and prints “AB,AB”.

F. The code does not compile because “+” cannot be overloaded for StringBuffer.

答案: D

Question No: 6

Exhibit:

1. Public class test (

2. Public static void stringReplace (String text) (

3. Text = text.replace (‘j’ , ‘i’);

4. )

5.

6. public static void bufferReplace (StringBuffer text) (

7. text = text.append (“C”)

8. )

9.

10. public static void main (String args[]) (

11. String textString = new String (“java”);

12. StringBuffer text BufferString = new StringBuffer (“java”);

13.

14. stringReplace (textString);

15. BufferReplace (textBuffer);

16.

17. System.out.printIn (textString + textBuffer);

18. )

19. )

What is the output?

答案: JAVAJAVA

Question No: 7

Exhibit:

1. public class test {

2. public static void add3 (Integer i) }

3. int val = i.intValue ( );

4. val += 3;

5. i = new Integer (val);

6. )

7.

8. public static void main (String args [ ] ) {

9. Integer i = new Integer (0);

10. add3 (i);

11. system.out.printIn (i.intValue ( ) );

12. }

13. )

What is the result?

A. Compilation will fail.

B. The program prints “0”.

C. The program prints “3”.

D. Compilation will succeed but an exception will be thrown at line 3.

答案: B

Question No: 8

Given:

1. public class ConstOver {

2. public ConstOver (int x, int y, int z) {

3. }

4. }

Which two overload the ConstOver constructor? (Choose Two)

A. ConstOver ( ) { }

B. Protected int ConstOver ( ) { }

C. Private ConstOver (int z, int y, byte x) { }

D. Public Object ConstOver (int x, int y, int z) { }

E. Public void ConstOver (byte x, byte y, byte z) { }

答案: A, C

Question No: 9

Given:

1. public class MethodOver {

2. public void setVar (int a, int b, float c) {

3. }

4. }

Which two overload the setVar method? (Choose Two)

A. Private void setVar (int a, float c, int b) { }

B. Protected void setVar (int a, int b, float c) { }

C. Public int setVar (int a, float c, int b) (return a;)

D. Public int setVar (int a, int b, float c) (return a;)

E. Protected float setVar (int a, int b, float c) (return c;)

答案: A, C

Question No: 10

Given:

1. class BaseClass {

2. Private float x = 1.0f ;

3. protected float getVar ( ) ( return x;)

4. }

5. class Subclass extends BaseClass (

6. private float x = 2.0f;

7. //insert code here

8. )

Which two are valid examples of method overriding? (Choose Two)

A. Float getVar ( ) { return x;}

B. Public float getVar ( ) { return x;}

C. Float double getVar ( ) { return x;}

D. Public float getVar ( ) { return x;}

E. Public float getVar (float f ) { return f;}

答案: B, D

Question No: 11

Which two demonstrate an “is a” relationship? (Choose Two)

A. public interface Person { }

public class Employee extends Person { }

B. public interface Shape { }

public class Employee extends Shape { }

C. public interface Color { }

public class Employee extends Color { }

D. public class Species { }

public class Animal (private Species species;)

E. interface Component { }

Class Container implements Component (

Private Component[ ] children;

)

答案: D, E

Question No: 12

Which statement is true?

A. An anonymous inner class may be declared as final.

B. An anonymous inner class can be declared as private.

C. An anonymous inner class can implement multiple interfaces.

D. An anonymous inner class can access final variables in any enclosing scope.

E. Construction of an instance of a static inner class requires an instance of the enclosing outer class.

答案: D

Question No 13

Given:

1. package foo;

2.

3. public class Outer (

4. public static class Inner (

5. )

6. )

Which statement is true?

A. An instance of the Inner class can be constructed with “new Outer.Inner ()”

B. An instance of the inner class cannot be constructed outside of package foo.

C. An instance of the inner class can only be constructed from within the outer class.

D. From within the package bar, an instance of the inner class can be constructed with “new inner()”

答案: A

Question No 14

Exhibit:

1. public class enclosingone (

2. public class insideone{}

3. )

4. public class inertest(

5. public static void main (string[]args)(

6. enclosingone eo= new enclosingone ();

7. //insert code here

8. )

9. )

Which statement at line 7 constructs an instance of the inner class?

A. InsideOnew ei= eo.new InsideOn();

B. Eo.InsideOne ei = eo.new InsideOne();

C. InsideOne ei = EnclosingOne.new InsideOne();

D. EnclosingOne.InsideOne ei = eo.new InsideOne();

答案: D

Question No 15

Exhibit:

1. interface foo {

2. int k = 0;

3. }

4.

5. public class test implements Foo (

6. public static void main(String args[]) (

7. int i;

8. Test test = new test ();

9. i= test.k;

10.i= Test.k;

11.i= Foo.k;

12.)

13.)

14.

What is the result?

A. Compilation succeeds.

B. An error at line 2 causes compilation to fail.

C. An error at line 9 causes compilation to fail.

D. An error at line 10 causes compilation to fail.

E. An error at line 11 causes compilation to fail.

答案: A

Question No 16

Given:

1. //point X

2. public class foo (

3. public static void main (String[]args) throws Exception {

4. printWriter out = new PrintWriter (new

5. java.io.outputStreamWriter (System.out), true;

6. out.printIn(“Hello”);

7. )

8. }

Which statement at PointX on line 1 allows this code to compile and run?

A. Import java.io.PrintWriter;

B. Include java.io.PrintWriter;

C. Import java.io.OutputStreamWriter;

D. Include java.io.OutputStreamWriter;

E. No statement is needed.

答案: A

Question No 17

Which two statements are reserved words in Java? (Choose Two)

A. Run

B. Import

C. Default

D. Implement

答案: B, C

Question No 18

Which three are valid declarations of a float? (Choose Three)

A. Float foo = -1;

B. Float foo = 1.0;

C. Float foo = 42e1;

D. Float foo = 2.02f;

E. Float foo = 3.03d;

F. Float foo = 0x0123;

答案: A, D, F

Question No 19

Leading the way in IT testing and certification tools, www.testking.com

Question No 19

Given:

8. int index = 1;

9. boolean[] test = new Boolean[3];

10. boolean foo= test [index];

What is the result?

A. Foo has the value of 0.

B. Foo has the value of null.

C. Foo has the value of true.

D. Foo has the value of false.

E. An exception is thrown.

F. The code will not compile.

答案: D

Question No 20

Given:

1. public class test(

2. public static void main(string[]args){

3. string foo = args [1];

4. string foo = args [2];

5. string foo = args [3];

6. }

7. )

And command line invocation:

Java Test red green blue

What is the result?

A. Baz has the value of “”

B. Baz has the value of null

C. Baz has the value of “red”

D. Baz has the value of “blue”

E. Bax has the value of “green”

F. The code does not compile.

G. The program throws an exception.

答案: G

Question No 21

Given:

8. int index = 1;

9. int [] foo = new int [3];

10.int bar = foo [index];

11.int baz = bar + index;

What is the result?

A. Baz has the value of 0

B. Baz has the value of 1

C. Baz has the value of 2

D. An exception is thrown.

E. The code will not compile.

答案: B

Question No 22

Given:

1. public class foo {

2. public static void main (String[]args) {

3. String s;

4. system.out.printIn (“s=” + s);

5. }

6. }

What is the result?

A. The code compiles and “s=” is printed.

B. The code compiles and “s=null” is printed.

C. The code does not compile because string s is not initialized.

D. The code does not compile because string s cannot be referenced.

E. The code compiles, but a NullPointerException is thrown when toString is called.

答案: C

Question No 23

Which will declare a method that forces a subclass to implement it?

A. Public double methoda();

B. Static void methoda (double d1) {}

C. Public native double methoda();

D. Abstract public void methoda();

E. Protected void methoda (double d1){}

答案: D

Question No 24

You want subclasses in any package to have access to members of a superclass. Which is the most

restrictive access modifier that will accomplish this objective?

A. Public

B. Private

C. Protected

D. Transient

E. No access modifier is qualified

答案: C

Question No 25

Given:

1. abstract class abstrctIt {

2. abstract float getFloat ();

3. }

4. public class AbstractTest extends AbstractIt {

5. private float f1= 1.0f;

6. private float getFloat () {return f1;}

7. }

What is the result?

A. Compilation is successful.

B. An error on line 6 causes a runtime failure.

C. An error at line 6 causes compilation to fail.

D. An error at line 2 causes compilation to fail.

答案: C

Question No 26

Exhibit:

1. public class test(

2. public int aMethod()[

3. static int i=0;

4. i++;

5. return I;

6. ]

7. public static void main (String args[]){

8. test test = new test();

9. test.aMethod();

10.int j = test.aMethod();

11.System.out.printIn(j);

12.}

13.)

What is the result?

A. Compilation will fail.

B. Compilation will succeed and the program will print “0”

C. Compilation will succeed and the program will print “1”

D. Compilation will succeed and the program will print “2”

答案: D

Question No 27

Given:

1. class super {

2. public float getNum() {return 3.0f;}

3. }

4.

5. public class Sub extends Super {

6.

7. }

Which method, placed at line 6, will cause a compiler error?

A. Public float getNum() {return 4.0f; }

B. Public void getNum () { }

C. Public void getNum (double d) { }

D. Public double getNum (float d) {retrun 4.0f; }

答案: B

Question No 28

Which declaration prevents creating a subclass of an outer class?

A. Static class FooBar{}

B. Private class FooBar{}

C. Abstract public class FooBar{}

D. Final public class FooBar{}

E. Final abstract class FooBar{}

答案: D

Question No 29

Given:

1. byte [] arry1, array2[];

2. byte array3 [][];

3. byte[][] array4;

If each array has been initialized, which statement will cause a compiler error?

A. Array2 = array1;

B. Array2 = array3;

C. Array2 = array4;

D. Both A and B

E. Both A and C

F. Both B and C

答案: F

Question No 30

Exhibit:

1. class super (

2. public int I = 0;

3.

4. public super (string text) (

5. I = 1

6. )

7. )

8.

9. public class sub extends super (

10. public sub (string text) (

11. i= 2

12. )

13.

14. public static void main (straing args[]) (

15. sub sub = new sub (“Hello”);

16. system.out. PrintIn(sub.i);

17. )

18. )

What is the result?

A. Compilation will fail.

B. Compilation will succeed and the program will print “0”

C. Compilation will succeed and the program will print “1”

D. Compilation will succeed and the program will print “2”

答案: A

Question No 31

Given:

1. public class returnIt (

2. returnType methodA(byte x, double y) (

3. return (short) x/y * 2;

4. )

5. )

What is the valid returnType for methodA in line 2?

A. Int

B. Byte

C. Long

D. Short

E. Float

F. Double

答案: F

Question No 32

Given the ActionEvent, which method allows you to identify the affected component?

A. GetClass.

B. GetTarget.

C. GetSource.

D. GetComponent.

E. GetTargetComponent.

答案: C

Question No 33

Which is a method of the MouseMotionListener interface?

A. Public void mouseMoved(MouseEvent)

B. Public boolean mouseMoved(MouseEvent)

C. Public void mouseMoved(MouseMotionEvent)

D. Public boolean MouseMoved(MouseMotionEvent)

E. Public boolean mouseMoved(MouseMotionEvent)

答案: A

Question No 34

Exhibit:

1. import java.awt*;

2.

3. public class X extends Frame (

4. public static void main(string []args) (

5. X x = new X ();

6. X.pack();

7. x.setVisible(true);

8. )

9.

10. public X () (

11. setlayout (new GridLayout (2,2));

12.

13. Panel p1 = new panel();

14. Add(p1);

15. Button b1= new Button (“One”);

16. P1.add(b1);

17.

18. Panel p2 = new panel();

19. Add(p2);

20. Button b2= new Button (“Two”);

21. P2.add(b2);

22.

23. Button b3= new Button (“Three”);

24. add(b3);

25.

26. Button b4= new Button (“Four”);

27. add(b4);

28. )

29. )

Which two statements are true? (Choose Two)

A. All the buttons change height if the frame height is resized.

B. All the buttons change width if the Frame width is resized.

C. The size of the button labeled “One” is constant even if the Frame is resized.

D. Both width and height of the button labeled “Three” might change if the Frame is resized.

答案: C, D

Question No 35

You are assigned the task of building a panel containing a TextArea at the top, a label directly below it,

and a button directly below the label. If the three components are added directly to the panel. Which

layout manager can the panel use to ensure that the TextArea absorbs all of the free vertical space when

the panel is resized?

A. GridLayout.

B. CardLayout.

C. FlowLayout.

D. BorderLayout.

E. GridBagLayout.

答案: E

Question No 36

Which gets the name of the parent directory file “file.txt”?

A. String name= File.getParentName(“file.txt”);

B. String name= (new File(“file.txt”)).getParent();

C. String name = (new File(“file.txt”)).getParentName();

D. String name= (new File(“file.txt”)).getParentFile();

E. Directory dir=(new File (“file.txt”)).getParentDir();

String name= dir.getName();

答案: B

Question No 37

Which can be used to encode charS for output?

A. Java.io.OutputStream.

B. Java.io.OutputStreamWriter.

C. Java.io.EncodeOutputStream.

D. Java.io.EncodeWriter.

E. Java.io.BufferedOutputStream.

答案: B

Question No 38

The file “file.txt” exists on the file system and contsins ASCII text.

Given:

38. try {

39. File f = new File(“file.txt”);

40. OutputStream out = new FileOutputStream(f, true);

41. }

42. catch (IOException) {}

What is the result?

A. The code does not compile.

B. The code runs and no change is made to the file.

C. The code runs and sets the length of the file to 0.

D. An exception is thrown because the file is not closed.

E. The code runs and deletes the file from the file system.

答案: A

Question No 39

Which constructs a DataOutputStream?

A. New dataOutputStream(“out.txt”);

B. New dataOutputStream(new file(“out.txt”));

C. New dataOutputStream(new writer(“out.txt”));

D. New dataOutputStream(new FileWriter(“out.txt”));

E. New dataOutputStream(new OutputStream(“out.txt”));

F. New dataOutputStream(new FileOutputStream(“out.txt”));

答案: F

Question No 40

What writes the text “” to the end of the file “file.txt”?

A. OutputStream out= new FileOutputStream (“file.txt”);

Out.writeBytes (“/n”);

B. OutputStream os= new FileOutputStream (“file.txt”, true);

DataOutputStream out = new DataOutputStream(os);

out.writeBytes (“/n”);

C. OutputStream os= new FileOutputStream (“file.txt”);

DataOutputStream out = new DataOutputStream(os);

out.writeBytes (“/n”);

D. OutputStream os= new OutputStream (“file.txt”, true);

DataOutputStream out = new DataOutputStream(os);

out.writeBytes (“/n”);

答案: B

Question No 41

Given:

1. public class X (

2. public object m () {

3. object o = new float (3.14F);

4. object [] oa = new object [1];

5. oa[0]= o;

6. o = null;

7. return oa[0];

8. }

9. )

When is the float object created in line 3, eligible for garbage collection?

A. Just after line 5

B. Just after line 6

C. Just after line 7 (that is, as the method returns)

D. Never in this method.

答案: D

Question No 42

Given:

3. string foo = “ABCDE”;

4. foo.substring(3);

5. foo.concat(“XYZ”);

6.

Type the value of foo at line 6.

答案: ABCDE

Question No 43

Which method is an appropriate way to determine the cosine of 42 degrees?

A. Double d = Math.cos(42);

B. Double d = Math.cosine(42);

C. Double d = Math.cos(Math.toRadians(42));

D. Double d = Math.cos(Math.toDegrees(42));

E. Double d = Math.cosine(Math.toRadians(42));

答案: C

Question No 44

You need to store elements in a collection that guarantees that no duplicates are stored and all elements

can be accessed in natural order. Which interface provides that capability?

A. Java.util.Map.

B. Java.util.Set.

C. Java.util.List.

D. Java.util.StoredSet.

E. Java.util.StoredMap.

F. Java.util.Collection.

答案: D

Question No 45

Which statement is true for the class java.util.HashSet?

A. The elements in the collection are ordered.

B. The collection is guaranteed to be immutable.

C. The elements in the collection are guaranteed to be unique.

D. The elements in the collection are accessed using a unique key.

E. The elements in the collections are guaranteed to be synchronized.

答案: C

Question No 46

Given:

1. public class IfTest (

2. public static void main(string[]args) {

3. int x = 3;

4. int y = 1;

5. if (x = y)

6. system.out.printIn(“Not equal”);

7. else

8. system.out.printIn(“Equal”);

9. }

10. )

What is the result?

A. The output is “Equal”

B. The output in “Not Equal”

C. An error at line 5 causes compilation to fall.

D. The program executes but does not print a message.

答案: C

Question No 47

Exhibit:

1. public class test (

2. public static void main(string args[]) {

3. int 1= 0;

4. while (i) {

5. if (i==4) {

6. break;

7. }

8. ++i;

9. }

10.

11. }

12. )

What is the value of i at line 10?

A. 0

B. 3

C. 4

D. 5

E. The code will not compile.

答案: E

Question No 48

Given:

3. int i= 1, j= 10 ;

4. do (

5. if (i++> --j) continue;

6. ) while (i<5);

After execution, what are the values for I and j?

A. i = 6 and j= 5

B. i = 5 and j= 5

C. i = 6 and j= 4

D. i = 5 and j= 6

E. i = 6 and j= 6

答案: D

Question No 49

Given:

1. switch (i) {

2. default:

310-025

Leading the way in IT testing and certification tools, www.testking.com

- 27 -

3. System.out.printIn(“Hello”);

4. }

What are the two acceptable types for the variable i? (Choose Two)

A. Char

B. Byte

C. Float

D. Double

E. Object

答案: A, B

Question No 50

Given:

1. public class foo {

2. public static void main (string[]args)

3. try {return;}

4. finally {system.out.printIn(“Finally”);}

5. }

6. }

What is the result?

A. The program runs and prints nothing.

B. The program runs and prints “Finally”

C. The code compiles, but an exception is thrown at runtime.

D. The code will not compile because the catch block is missing.

答案: B

Question No 51

51. Given the following incomplete method:

1) public void method(){

2}

3} if (someTestFails()){

4}

5} }

6}

7} }

You want to make this method throw an IOException if,and only if,the method someTestFails() returns a value of true.

Which changes achieve this?

A. Add at line 2:IOException e;

B. Add at line 4:throw e;

C. Add at line 4:throw new IOException();

D. Add at line 6:throw new IOException();

E. Modify the method declaration to indicate that an object of type Exception might be thrown.

答案: C、E

Question No 52

52. Given the following definition:

String s = null;

Which code fragments cause an object of type NullPointerException to be thrown?

A. if((s!=null)&(s.length()>0))

B. if((s!=null)&&(s.length()>0))

C. if((s==null)|(s.length()==0))

D. if((s==null)||(s.length()==0))

答案: A、C

Question No 53

53. The following is a program

1) class Exsuper{

2} String name;

3} String nick_name;

4}

5} public ExSuper(String s,String t){

6} name = s;

7} nick_name = t;

8} }

9}

10} public string toString(){

11} return name;

12} }

13} }

14)

15) public class Example extends ExSuper{

16}

17} public Example(String s,String t){

18} super(s,t);

19} }

20}

21} public String to String(){

22} return name +”a.k.a”+nick_name;

23} }

24}

25} public static void main(String args[]){

26} ExSuper a = new ExSuper(“First”,”1st”);

27} ExSuper b = new Example(“Second”,”2nd”);

28}

29} System.out.println(“a is”+a.toString());

30} System.out.println(“b is”+b.toString());

31} }

32} }

What happens when the user attempts to compile and run this program?

` A. A Compiler error occurs at line 21

B. An object of type ClassCastException is thrown at line 27

C.The following output:

a is First

b is second

D. The following output:

a is First

b is Secong a.k.a 2nd

F. The following output:

a is First a.k.a 1st

b is Second a.k.a 2nd

答案:D

Question No 54

54. Which statements are true about Listeners?

A. At most one listener can be added to any simple Component.

B. The return value from a listener is used to control the invocation of other listener

C. If multiple listeners are added to a single component, they must all be made friends to each other

D. If multiple listeners are added to single component, the order of invocation of the listener is not specified.

E. In the AWT, listener methods generally take an argument, which is an instance of some subclass of java.awt.AWTEvent class.

答案: D、E

Question No 55

55. Given the following class outline:

class Example{

private int x;

// rest of class body

public static void main(String args[]){

//implementation of main mehtod}

}

Which statement is true?

A. x=2 is a valid assignment in the main() method of class Example.

B. Changing private int x to int x would make x=2 a valid assignment in the main() method of class Example.

C. Changing private int x to public int x would make x=2 a valid assignment in the main() method of class Example.

D. Changing private int x to static int x would make x=2 a valid assignment in the main() method of class Example.

E. Changing class Example to public class Example would make x=2 a valid assignment in the main() method of class Example.

答案:D

Question No 56

56. Which statement is true about an inner class?

A. It must be anonymous

B. It can not implement an interface

C. It is only accessible in the enclosing class

D. It can access any final variables in any enclosing scope.

答案:D

Question No 57

57. Which statement is true about the grid bag layout manager?

A. The number of rows and columns is fixed when the container is created.

B. The number of rows and columns is fixed when the GridBagLayout object is created.

C. If a component has a fill value of BOTH, then as the container change size, the component is resized.

D. Every component must carry a non-zero weightx and weighty value when it is added to the container

E. If a row has a weighty value that is non-zero, then as the container changes height, the row changes height.

答案:C

Question No 58

58. Which statement are true about writing a class that is to handle the events issued by a user interface component.

A. Subclassing an adapter is inappropriate in this case.

B. The class should implement some listener interface

C. A class can implement multiple listener interfaces if desired.

D. A subclass of an AWT component cannot listen to its own events.

E. When implements listener interface, a class need only provide those handler methods that it chooses.

答案: B、C

Question No 59

59.The argument for a class?s main() method is called args, and the class is invoked as follows.

java Example cat

What would be the effect of trying to access args[0] in the main method?

A. The value produced is cat

B. The value produced is java

C. The value produced is Example

D. An object of type NullPointerException is thrown.

E. An object of type ArrayIndexOutofBoundsException is thrown.

答案:A

Question No 60

60. Which best describes the requirements of a fully encapsulated class?

A. Mehtods must not be private.

B. Variables must not be public.

C. The class must be marked final

D. Public methods are all marked final.

E. Modification of the objects state is only possible using method calls.

答案:E

Question No 61

61.Which contains objects without ordering, duplication, or any particular lookup/retrieval mechanism?

A. Map

B. Set

C. List

D. Collection

E. Enumeration

答案:B

scjp模擬試題(三)

Question No: 1

1.Which statement about the garbage collection mechanism are true?

A. Garbage collection require additional programe code in cases where multiple threads are running.

B. The programmer can indicate that a reference through a local variable is no longer of interest.

C. The programmer has a mechanism that explicity and immediately frees the memory used by Java objects.

D. The garbage collection mechanism can free the memory used by Java Object at explection time.

E. The garbage collection system never reclaims memory from objects while are still accessible to running user threads.

答案:B、E

Question No: 2

2. Give the following method:

1) public void method( ){

2} String a,b;

3} a=new String(“hello world”);

4} b=new String(“game over”);

5} System.out.println(a+b+”ok”);

6} a=null;

7} a=b;

8} System.out.println(a);

9} }

In the absence of compiler optimization, which is the earliest point the object a refered is definitely elibile to be garbage collection.

A. before line 3

B.before line 5

C. before line 6

D.before line 7

E. Before line 9

答案:D

Question No: 3

3. In the class java.awt.AWTEvent,which is the parent class upon which jdk1.1 awt events are based there is a method called getID which phrase accurately describes the return value of this method?

A. It is a reference to the object directly affected by the cause of the event.

B. It is an indication of the nature of the cause of the event.

C. It is an indication of the position of the mouse when it caused the event.

D. In the case of a mouse click, it is an indication of the text under the mouse at the time of the event.

E. It tells the state of certain keys on the keybord at the time of the event.

F. It is an indication of the time at which the event occurred.

答案: B

Question No: 4

4. Which statement about listener is true?

A. Most component allow multiple listeners to be added.

B. If multiple listener be add to a single component, the event only affected one listener.

C. Component don?t allow multiple listeners to be add.

D. The listener mechanism allows you to call an addXxxxListener method as many times as is needed, specifying as many different listeners as your design require.

答案: A、D

Question No: 5

5.Give the following code:

public class Example{

public static void main(String args[] ){

int l=0;

do{

System.out.println(“Doing it for l is:”+l);

}while(--l>0)

System.out.println(“Finish”);

}

}

Which well be output:

A. Doing it for l is 3

B. Doing it for l is 1

C. Doing it for l is 2

D. Doing it for l is 0

E. Doing it for l is ?C1

F. Finish

答案: D、F

Question No: 6

6. Give the code fragment:

1) switch(x){

2} case 1:System.out.println(“Test 1”);break;

3} case 2:

4} case 3:System.out.println(“Test 2”);break;

5} default:System.out.println(“end”);

6} }

which value of x would cause “Test 2” to the output:

A. 1

B. 2

C. 3

D. default

答案: B.C

Question No: 7

7. Give incompleted method:

1)

2) { if(unsafe()){//do something…}

3} else if(safe()){//do the other…}

4} }

The method unsafe() well throe an IOException, which completes the method of declaration when added at line one?

A. public IOException methodName()

B. public void methodName()

C. public void methodName() throw IOException

D. public void methodName() throws IOException

E. public void methodName() throws Exception

答案: D、F

Question No: 8

8. Give the code fragment:

if(x>4){

System.out.println(“Test 1”);}

else if (x>9){

System.out.println(“Test 2”);}

else {

System.out.println(“Test 3”);}

Which range of value x would produce of output “Test 2”?

A. x<4

B. x>4

C. x>9

D. None

答案:D

Question No: 9

9. Give the following method:

public void example(){

try{

unsafe();

System.out.println(“Test1”);

}catch(SafeException e){System.out.println(“Test 2”);

}finally{System.out.println(“Test 3”);}

System.out.println(“Test 4”);

Which will display if method unsafe () run normally?

A. Test 1

B. Test 2

C. Test 3

D. Test 4

答案: A、C、D

Question No: 10

10. Which method you define as the starting point of new thread in a class from which new the thread can be excution?

A. public void start()

B. public void run()

C. public void int()

D. public static void main(String args[])

E. public void runnable()

答案:B

Question No: 11

11.Given the following class definition:

class A{

protected int i;

A(int i){

this.i=i;

}

}

which of the following would be a valid inner class for this class?

Select all valid answers:

A. class B{

}

B. class B extends A{

}

C. class B extends A{

B(){System.out.println(“i=”+i);}

}

D. class B{

class A{}

}

E. class A{}

答案:A

Question No: 12

12. Which modifier should be applied to a method for the lock of object this to be obtained prior to excution any of the method body?

A. synchronized

B. abstract

C. final

D. static

E. public

答案:A

Question No: 13

13. The following code is entire contents of a file called Example.java,causes precisely one error during compilation:

1) class SubClass extends BaseClass{

2} }

3) class BaseClass(){

4} String str;

5} public BaseClass(){

6} System.out.println(“ok”);}

7} public BaseClass(String s){

8} str=s;}}

9) public class Example{

10} public void method(){

11} SubClass s=new SubClass(“hello”);

12} BaseClass b=new BaseClass(“world”);

13} }

14} }

Which line would be cause the error?

A. 9 B. 10 C. 11 D.12

答案:C

Question No: 14

14. Which statement is correctly declare a variable a which is suitable for refering to an array of 50 string empty object?

A. String [] a

B. String a[]

C. char a[][]

D. String a[50]

F. Object a[50]

答案: A、B

Question No: 15

15. Give the following java source fragement:

//point x

public class Interesting{

//do something

}

Which statement is correctly Java syntax at point x?

A. import java.awt.*;

B.package mypackage

C. static int PI=3.14

D. public class MyClass{//do other thing…} E. class MyClass{//do something…}

答案: A、E

Question No: 16

16. Give this class outline:

class Example{

private int x;

//rest of class body…

}

Assuming that x invoked by the code java Example, which statement can made x be directly accessible in main() method of Example.java?

A. Change private int x to public int x

B. change private int x to static int x

C. Change private int x to protected int x

D. change private int x to final int x

答案:B

Question No: 17

17. the piece of preliminary analsis work describes a class that will be used frequently in many unrelated parts of a project

“The polygon object is a drawable, A polygon has vertex information stored in a vector, a color, length and width.”

Which Data type would be used?

A. Vector

B. int

C. String

D. Color

E. Date

答案: A、B、D

Question No: 18

18. A class design requires that a member variable should be accessible only by same package, which modifer word should be used?

A. protected

B. public

C. no modifer

D. private

答案:C

Question No: 19

19.Which declares for native method in a java class corrected?

A. public native void method(){}

B. public native void method();

C. public native method();

D. public void method(){native;}

E. public void native method();

答案:B

Question No: 20

20. Which modifer should be applied to a declaration of a class member variable for the value of variable to remain constant after the creation of the object?

答案: final

Question No: 21

21. Which is the main() method return of a application?

A. String

B. byte

C. char

D. void

答案:D

Question No: 22

22. Which is corrected argument of main() method of application?

A. String args

B. String ar[]

C. Char args[][]

D. StringBuffer arg[]

答案:B

Question No: 23

23. “The Employee object is a person, An Employee has appointment store in a vector, a hire date and a number of dependent”

short answer: use shortest statement declare a class of Employee.

答案: public class Employee extends Person

Question No: 24

24. Give the following class defination inseparate source files:

public class Example{

public Example(){//do something}

protected Example(int i){//do something}

protected void method(){//do something}

}

public class Hello extends Example{//member method and member variable}

Which methods are corrected added to the class Hello?

A. public void Example(){}

B. public void method(){}

C. protected void method(){}

D. private void method(){}

答案: A、B、C

Question No: 25

25. Float s=new Float(0.9F);

Float t=new Float(0.9F);

Double u=new Double(0.9);

Which expression?s result is true?

A. s==t

B. s.equals(t)

C. s==u

D. t.equals(u)

答案: A、B

Question No: 26

26. Give following class:

class AClass{

private long val;

public AClass(long v){val=v;}

public static void main(String args[]){

AClass x=new AClass(10L);

AClass y=new AClass(10L);

AClass z=y;

long a=10L;

int b=10;

}

}

Which expression result is true?

A. a==b;

B. a==x;

C. y==z;

D. x==y;

E. a==10.0;

答案: A、C、E

Question No: 27

27. A socket object has been created and connected to a standard internet service on a remote network server. Which construction give the most suitable means for reading ASCII data online at a time from the socket?

A. InputStream in=s.getInputStream();

B. DataInputStream in=new DataInputstream(s.getInputStream());

C. ByteArrayInputStream in=new ByteArrayInputStream(s.getInputStream());

D. BufferedReader in=new BufferedReader(new InputStreamReader(s.getInputStream()));

E. BufferedReader in=new BufferedReader(new InputStreamReader(s.getInputStream()),”8859-1”);

答案:E

Question No: 28

28. String s=”Example String”;

Which operation is legal?

A. s>>>=3;

B. int i=s.length();

C. s[3]=”x”;

D. String short_s=s.trim();

E. String t=”root”+s;

答案: B、D、E

Question No: 29

29. What happens when you try to compile and run the following program?

class Mystery{

String s;

public static void main(String[] args){

Mystery m=new Mystery();

m.go();

}

void Mystery(){

s=”constructor”;

}

void go(){

System.out.println(s);

}

}

A. this code will not compile

B. this code compliles but throws an exception at runtime

C. this code runs but nothing appears in the standard output

D. this code runs and “constructor” in the standard output

E. this code runs and writes ”null” in the standard output

答案:E

Question No: 30

30. What use to position a Button in a Frame ,only width of Button is affected by the Frame size, which Layout Button well be set ?

A. FlowLayout;

B. GridLayout;

C. North of BorderLayout

D. South of BorderLayout

E. East or West of BorderLayout

答案: C、D

Question No: 31

31. What use to position a Button in a Frame, size of Button is not affected by the Frame size, which Layout Button will be set?

A. FlowLayout;

B. GridLayout;

C. North of BorderLayout

D. South of BorderLayout

E. East or West of BorderLayout

答案:A

Question No: 32

32. An AWT GUI under exposure condition, which one or more method well be invoke when it redraw?

A. paint();

B. update();

C. repaint();

D. drawing();

答案:A

Question No: 33

33. Select valid identifier of Java:

A. userName

B. %passwd

C. 3d_game

D. $charge E. this

答案: A、D

Question No: 34

34. Which are Java keyword?

A. goto

B. null

C. FALSE

D. native

E. const

答案: A、B、D、E

Question No: 35

35. Run a corrected class: java ?Ccs AClass a b c

Which statement is true?

A. args[0]=”-cs”;

B. args[1]=”a b c”;

C. args[0]=”java”;

D. args[0]=”a”; E. args[1]=?b?

答案:D

Question No: 36

36. Give the following java class:

public class Example{

static int x[]=new int[15];

public static void main(String args[]){

System.out.println(x[5]);

}

}

Which statement is corrected?

A. When compile, some error will occur.

B. When run, some error will occur.

C. Output is zero.

D. Output is null.

答案:C

Question No: 37

37. Give the following java class:

public class Example{

public static void main(String args[]){

static int x[] = new int[15];

System.out.println(x[5]);

}

}

Which statement is corrected?

A. When compile, some error will occur.

B. When run, some error will occur.

C. Output is zero.

D. Output is null.

答案:A

Question No: 38

38. Short answer:

The decimal value of i is 12, the octal i value is:

答案: 014

Question No: 39

39. Short answer:

The decimal value of i is 7, the hexadecimal i value is:

答案: 0x7

Question No: 40

40. Which is the range of char?

A. 27~27-1

B. 0~216-1

C. 0~216

D. 0~28

答案:B

Question No: 41

41. Which is the range of int type?

A. -216~216-1

B.- 231~231-1

C. -232~232-1

D. -264~264-1

答案:B

Question No: 42

42. Give the following class:

public class Example{

String str=new String(“good”);

char ch[]={

public static void main(String args[]){

Example ex=new Example();

ex.change(ex.str,ex.ch);

System.out.println(ex.str+”and”+ex.ch);

}

public void change(String str,char ch[]){

str=”test ok”;ch[0]=?g?

}

}

Which is the output:

A. good and abc

B. good and gbc

C. test ok and abc

D. test ok and gbc

答案:B

Question No: 43

43. Which code fragments would correctly identify the number of arguments passed via command line to a Java application, exclude the name of the class that is being invoke.

A. int count = args.length;

B. int count = args.length-1;

C. int count=0; while(args[count]!=null)

count++;

D. int count=0;while

(!(args[count].equals(“”))) count++;

答案:A

Question No: 44

44. FilterOutputStream is the parent class for BufferedOutputStream, DataOutputStream and PrintStream. Which classes are valid argument for the constructor of a FilterOutputStream?

A. InputStream

B. OutputStream

C. File

D. RandomAccessFile

E. StreamTokenizer

答案:B

Question No: 45

45. Given a TextArea using a proportional pitch font and constructed like this:

TextArea t=new TextArea(“12345”,5,5);

Which statement is true?

A. The displayed width shows exactly five characters one each line unless otherwise constrained

B. The displayed height is five lines unless otherwise constrained

C. The maximum number of characters in a line will be five

D. The user will be able to edit the character string

E. The displayed string can use multiple fonts

答案:B

Question No: 46

46. Given a List using a proportional pitch font and constructed like this:

List l=new List(5,true);

Which statement is true?

A. The displayed item exactly five lines unless otherwise constrained

B. The displayed item is five lines init, but can displayed more than five Item by scroll

C. The maximum number of item in a list will be five.

D. The list is multiple mode

答案:B

Question No: 47

47. Given this skeleton of a class currently under construction:

public class Example{

int x,y,z;

public Example (int a, int b) {

//lots of complex computation

x=a; y=b;

}

public Example(int a, int b, int c){

// do everything the same as single argument

// version of constructor

// including assignment x=a, y=b, z=c

z=c;

}

}

What is the most concise way to code the “do everything…” part of the constructor taking two arguments?

Short answer:

答案: this(a,b);

Question No: 48

48. Which correctly create a two dimensional array of integers?

A. int a[][] = new int[][];

B. int a[10][10] = new int[][];

C. int a[][] = new int[10][10];

D. int [][]a = new int[10][10];

E. int []a[] = new int[10][10];

答案: C、D、E

Question No: 49

49. Which are correct class declarations? Assume in each case that the text constitutes the entire contents of a file called Fred.java?

A. public class Fred{

public int x = 0;

public Fred (int x){

this.x=x;

}

}

B. public class fred{

public int x = 0;

public Fred (int x){

this.x=x;

}

}

C. public class Fred extends MyBaseClass, MyOtherBaseClass{

public int x = 0;

public Fred(int xval){

x=xval;

}

}

D. protected class Fred{

private int x = 0;

private Fred (int xval){

x=xval;

}

}

E. import java.awt.*;

public class Fred extends Object{

int x;

private Fred(int xval){

x = xval;

}

}

答案: A、E

Question No: 50

50. A class design requires that a particular member variable must be accessible for direct access by any subclasses of this class. but otherwise not by classes which are not members of the same package. What should be done to achieve this?

A. The variable should be marked public

B. The variable should be marked private

C. The variable should be marked protected

D. The variable should have no special access modifier

E. The variable should be marked private and an accessor method provided

答案: C

Question No: 51

51.What might cause the current thread to stop executing?

A. An interrupted exception is thrown.

B. The thread execute a sleep() call.

C. The thread constructs a new thread

D. A thread of higher priority becomes ready

E. The thread executes a read() call on InputStream

答案: A、B、D、E

Question No: 52

52.Which statements are true about threads?

A. Threads created from the same class all finish together.

B. A thread can be created only by subclassing java.lang.Thread.

C. Invoking the suspend() method stops a thread so that it cannot be restarted.

D. The Java interpreter?s natural exit occurs when no non-daemon threads remain alive.

E. Uncoordinated changes to shared data by multiple threads may result in the data being read, or left, in an inconsistent state.

答案: D、E

Question No: 53

53.What might form part of a correct inner class declaration or combined declaration and instantiation?

A. private class C

B. new SimpleInterface(){

C. new ComplexInterface(x){

D. private final abstract class(

E. new ComplexClass() implements SimpleInterface

答案: A、B

Question No: 54

54. Which statements are true about the garbage collection mechanisms?

A. The garbage collection mechanism release memory at pridictable times.

B. A correct program must not depend upon the timing or order of garbage collection

C. Garbage collection ensures that a program will NOT run out of memory during execution

D. The programmer can indicate that a reference through a local variable is no longer going to be used.

E. The programmer has a mechanism that explicitly and immediately frees the memory used by Java objects.

答案: B、D

Question No: 55

55.Given the following,

4. String d = "bookkeeper";

5. d.substring(1,7);

6. d = "w" + d;

7. d.append("woo");

8. System.out.println(d);

what is the result?

A. wookkeewoo

B. wbookkeeper

C. wbookkeewoo

D. wbookkeeperwoo

E. Compilation fails.

F. An exception is thrown at runtime.

答案:E

Question No: 56

56. Which two statements are true about comparing two instances of the same class, given that the

equals() and hashCode() methods have been properly overridden? (Choose two.)

A. If the equals() method returns true, the hashCode() comparison == must

return true.

B. If the equals() method returns false, the hashCode() comparison != must return

true.

C. If the hashCode() comparison == returns true, the equals() method must return

true.

D. If the hashCode() comparison == returns true, the equals() method might

return true.

E. If the hashCode() comparison != returns true, the equals() method might

return true.

答案:A and D

Question No: 57

57. Given the following,

1. class X2 {

2. public X2 x;

3. public static void main(String [] args) {

4. X2 x2 = new X2();

5. X2 x3 = new X2();

6. x2.x = x3;

7. x3.x = x2;

8. x2 = new X2();

9. x3 = x2;

10. doComplexStuff();

11. }

12. }

after line 9 runs, how many objects are eligible for garbage collection?

A. 0

B. 1

C. 2

D. 3

E. 4

答案:C

Question No: 58

58. Which two are true about a method-local inner class?

A. It must be marked final.

B. It can be marked abstract.

C. It can be marked public.

D. It can be marked static.

E. It can access private members of the enclosing class.

答案:A E

Question No: 59

59. Given the following,

1.public class TestObj {

2. public static void main (String [] args) {

3. Object o = new Object() {

4. public boolean equals(Object obj) {

5. return true;

6. }

7. }

8. System.out.println(o.equals("Fred"));

9. }

10.}

what is the result?

A. An exception occurs at runtime.

B. true

C. fred

D. Compilation fails because of an error on line 3.

E. Compilation fails because of an error on line 4.

F. Compilation fails because of an error on line 8.

G. Compilation fails because of an error on a line other than 3, 4, or 8.

答案:G

Question No: 60

60. Given the following,

1. class Test {

2.

3. public static void main(String [] args) {

4. printAll(args);

5. }

6.

7. public static void printAll(String[] lines) {

8. for(int i=0;i

9. System.out.println(lines[i]);

10. Thread.currentThread().sleep(1000);

11. }

12. }

13. }

the static method Thread.currentThread() returns a reference to the currently executing

Thread object. What is the result of this code?

A. Each String in the array lines will output, with a 1-second pause.

B. Each String in the array lines will output, with no pause in between because this method is

not executed in a Thread.

C. Each String in the array lines will output, and there is no guarantee there will be a pause

because currentThread() may not retrieve this thread.

D. This code will not compile.

答案:D

Question No: 61

61. Which two are true?

A. The notifyAll() method must be called from a synchronized context.

B. To call wait(), an object must own the lock on the thread.

C. The notify() method is defined in class java.lang.Thread.

D. When a thread is waiting as a result of wait(), it release its locks.

E. The notify() method causes a thread to immediately release its locks.

F. The difference between notify() and notifyAll() is that notifyAll() notifies

all waiting threads, regardless of the object they’re waiting on.

答案:A D

例題1:

Choose the three valid identifiers from those listed below.

A. IDoLikeTheLongNameClass

B. $byte

C. const

D. _ok

E. 3_case

解答:A, B, D

點(diǎn)評(píng):Java中的標(biāo)示符必須是字母、美元符($)或下劃線(_)開頭。關(guān)鍵字與

保留字不能作為標(biāo)示符。選項(xiàng)C中的const是Java的保留字,所以不能作標(biāo)示符。

選項(xiàng)E中的3_case以數(shù)字開頭,違反了Java的規(guī)則。

例題2:

How can you force garbage collection of an object?

A. Garbage collection cannot be forced

B. Call System.gc().

C. Call System.gc(), passing in a reference to the object to be

garbage collected.

D. Call Runtime.gc().

E. Set all references to the object to new values(null, for

example).

解答:A

點(diǎn)評(píng):在Java中垃圾收集是不能被強(qiáng)迫立即執(zhí)行的。調(diào)用System.gc()或

Runtime.gc()靜態(tài)方法不能保證垃圾收集器的立即執(zhí)行,因?yàn)?#xff0c;也許存在著更高

優(yōu)先級(jí)的線程。所以選項(xiàng)B、D不正確。選項(xiàng)C的錯(cuò)誤在于,System.gc()方法是不

接受參數(shù)的。選項(xiàng)E中的方法可以使對(duì)象在下次垃圾收集器運(yùn)行時(shí)被收集。

例題3:

Consider the following class:

1. class Test(int i) {

2. void test(int i) {

3. System.out.println("I am an int.");

4. }

5. void test(String s) {

6. System.out.println("I am a string.");

7. }

8.

9. public static void main(String args[]) {

10. Test t=new Test();

11. char ch="y";

12. t.test(ch);

13. }

14. }

Which of the statements below is true?(Choose one.)

A. Line 5 will not compile, because void methods cannot be

overridden.

B. Line 12 will not compile, because there is no version of test()

that rakes a char argument.

C. The code will compile but will throw an exception at line 12.

D. The code will compile and produce the following output: I am an

int.

E. The code will compile and produce the following output: I am a

String.

解答:D

點(diǎn)評(píng):在第12行,16位長(zhǎng)的char型變量ch在編譯時(shí)會(huì)自動(dòng)轉(zhuǎn)化為一個(gè)32位長(zhǎng)

的int型,并在運(yùn)行時(shí)傳給void test(int i)方法。

例題4:

Which of the following lines of code will compile without error?

A.

int i=0;

if (i) {

System.out.println("Hi");

}

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 &| j==2)

System.out.println("OK");

解答:B, C

點(diǎn)評(píng):選項(xiàng)A錯(cuò),因?yàn)閕f語(yǔ)句后需要一個(gè)boolean類型的表達(dá)式。邏輯操作有^、

&、| 和 &&、||,但是"&|"是非法的,所以選項(xiàng)D不正確。

例題5:

Which two demonstrate a "has a" relationship? (Choose two)

A. public interface Person { }

public class Employee extends Person{ }

B. public interface Shape { }

public interface Rectandle extends Shape { }

C. public interface Colorable { }

public class Shape implements Colorable

{ }

D. public class Species{ }

public class Animal{private Species species;}

E. interface Component{ }

class Container implements Component{

private Component[] children;

}

解答:D, E

點(diǎn)評(píng): 在Java中代碼重用有兩種可能的方式,即組合("has a"關(guān)系)和

繼承("is a"關(guān)系)。"has a"關(guān)系是通過(guò)定義類的屬性的方式實(shí)現(xiàn)的;而

"is a"關(guān)系是通過(guò)類繼承實(shí)現(xiàn)的。本例中選項(xiàng)A、B、C體現(xiàn)了"is a"關(guān)系;

選項(xiàng)D、E體現(xiàn)了"has a"關(guān)系。

[1] [2] 下一頁(yè)

本站部分文章收集于網(wǎng)絡(luò),版權(quán)歸原作者及出版社所有 如果您覺(jué)得侵犯了您的版權(quán)請(qǐng)來(lái)信告訴我們,我們會(huì)盡快刪除其內(nèi)容! 本站原創(chuàng)文章版權(quán)歸本站所有,除特別申明外,大家可以自由轉(zhuǎn)載,但原作者和來(lái)自本站的鏈接必須保留!

例題6:

Which two statements are true for the class java.util.TreeSet?

(Choose two)

A. The elements in the collection are ordered.

B. The collection is guaranteed to be immutable.

C. The elements in the collection are guaranteed to be unique.

D. The elements in the collection are accessed using a unique key.

E. The elements in the collection are guaranteed to be synchronized

解答:A, C

點(diǎn)評(píng):TreeSet類實(shí)現(xiàn)了Set接口。Set的特點(diǎn)是其中的元素惟一,選項(xiàng)C正

確。由于采用了樹形存儲(chǔ)方式,將元素有序地組織起來(lái),所以選項(xiàng)A也正確。

例題7:

True or False: Readers have methods that can read and return floats

and doubles.

A. Ture

B. False

解答:B

點(diǎn)評(píng): Reader/Writer只處理Unicode字符的輸入輸出。float和double可以

通過(guò)stream進(jìn)行I/O.

例題8:

What does the following paint() method draw?

1. public void paint(Graphics g) {

2. g.drawString("Any question", 10, 0);

3. }

A. The string "Any question?", with its top-left corner at 10,0

B. A little squiggle coming down from the top of the component.

解答:B

點(diǎn)評(píng):drawString(String str, int x, int y)方法是使用當(dāng)前的顏色和字

符,將str的內(nèi)容顯示出來(lái),并且最左的字符的基線從(x,y)開始。在本題中,

y=0,所以基線位于最頂端。我們只能看到下行字母的一部分,即字母'y'、

'q'的下半部分。

例題9:

What happens when you try to compile and run the following

application? Choose all correct options.

1. public class Z {

2. public static void main(String[] args) {

3. new Z();

4. }

5.

6. Z() {

7. Z alias1 = this;

8. Z alias2 = this;

9. synchronized(alias1) {

10. try {

11. alias2.wait();

12. System.out.println("DONE WAITING");

13. }

14. catch (InterruptedException e) {

15. System.out.println("INTERR

UPTED");

16. }

17. catch (Exception e) {

18. System.out.println("OTHER EXCEPTION");

19. }

20. finally {

21. System.out.println

("FINALLY");

22. }

23. }

24. System.out.println("ALL DONE");

25. }

26. }

A. The application compiles but doesn''t print anything.

B. The application compiles and print "DONE WAITING"

C. The application compiles and print "FINALLY"

D. The application compiles and print "ALL DONE"

E. The application compiles and print "INTERRUPTED"

解答:A

點(diǎn)評(píng):在Java中,每一個(gè)對(duì)象都有鎖。任何時(shí)候,該鎖都至多由一個(gè)線程控

制。由于alias1與alias2指向同一對(duì)象Z,在執(zhí)行第11行前,線程擁有對(duì)象Z的

鎖。在執(zhí)行完第11行以后,該線程釋放了對(duì)象Z的鎖,進(jìn)入等待池。但此后沒(méi)有

線程調(diào)用對(duì)象Z的notify()和notifyAll()方法,所以該進(jìn)程一直處于等待狀態(tài),

沒(méi)有輸出。

例題10:

Which statement or statements are true about the code listed below?

Choose three.

1. public class MyTextArea extends TextArea {

2. public MyTextArea(int nrows, int ncols) {

3. enableEvents(AWTEvent.TEXT_

EVENT_MASK);

4. }

5.

6. public void processTextEvent

(TextEvent te) {

7. System.out.println("Processing a text event.");

8. }

9. }

A. The http://www.qd.sd.cn code must appear in a file called MyTextArea.java

B. Between lines 2 and 3, a call should be made to super(nrows,

ncols) so that the new component will have the correct size.

C. At line 6, the return type of processTextEvent() should be

declared boolean, not void.

D. Between lines 7 and 8, the following code should appear: return

true.

E. Between lines 7 and 8, the following code should appear:

super.processTextEvent(te).

解答:A, B, E

點(diǎn)評(píng):由于類是public,所以文件名必須與之對(duì)應(yīng),選項(xiàng)A正確。如果不在

2、3行之間加上super(nrows,ncols)的話,則會(huì)調(diào)用無(wú)參數(shù)構(gòu)建器TextArea(),

使nrows、ncols信息丟失,故選項(xiàng)B正確。在Java2中,所有的事件處理方法都不

返回值,選項(xiàng)C、D錯(cuò)誤。選項(xiàng)E正確,因?yàn)槿绻患觭uper.processTextEvent

(te),注冊(cè)的listener將不會(huì)被喚醒。

總結(jié)

以上是生活随笔為你收集整理的java storedmap_SCJP模拟题的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

日韩av无码一区二区三区不卡 | 婷婷色婷婷开心五月四房播播 | 大肉大捧一进一出好爽视频 | 亚洲a无码综合a国产av中文 | 人人妻人人澡人人爽欧美一区九九 | 国产人妻久久精品二区三区老狼 | 精品久久久无码中文字幕 | 国产麻豆精品一区二区三区v视界 | 爆乳一区二区三区无码 | 少妇性俱乐部纵欲狂欢电影 | 精品无码国产一区二区三区av | 欧美野外疯狂做受xxxx高潮 | 131美女爱做视频 | 亚洲 高清 成人 动漫 | 纯爱无遮挡h肉动漫在线播放 | √天堂资源地址中文在线 | 国产亚洲精品久久久久久大师 | 国产亚洲欧美日韩亚洲中文色 | 日本爽爽爽爽爽爽在线观看免 | 亚洲精品无码人妻无码 | 国产av久久久久精东av | 久久久久国色av免费观看性色 | 亚洲国产精品久久久久久 | 中文字幕无码免费久久99 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 日韩 欧美 动漫 国产 制服 | 午夜精品一区二区三区的区别 | 久青草影院在线观看国产 | 亚洲一区二区三区播放 | 亚洲色大成网站www国产 | 国产艳妇av在线观看果冻传媒 | 色综合久久久久综合一本到桃花网 | 国产口爆吞精在线视频 | 天天躁日日躁狠狠躁免费麻豆 | 女人高潮内射99精品 | 国产精品第一区揄拍无码 | 亚洲日韩av一区二区三区中文 | aa片在线观看视频在线播放 | 亚洲s色大片在线观看 | 四虎国产精品免费久久 | 亚洲中文字幕在线观看 | 男人扒开女人内裤强吻桶进去 | 成人试看120秒体验区 | 帮老师解开蕾丝奶罩吸乳网站 | 波多野结衣高清一区二区三区 | 国内精品久久久久久中文字幕 | 国内精品一区二区三区不卡 | 99麻豆久久久国产精品免费 | а√资源新版在线天堂 | 正在播放老肥熟妇露脸 | 亚洲啪av永久无码精品放毛片 | 高中生自慰www网站 | 亚洲男人av天堂午夜在 | 日日噜噜噜噜夜夜爽亚洲精品 | 欧美精品无码一区二区三区 | 激情综合激情五月俺也去 | 亚洲日韩一区二区 | 熟妇人妻无码xxx视频 | 丝袜 中出 制服 人妻 美腿 | 丝袜美腿亚洲一区二区 | 国产女主播喷水视频在线观看 | 亚洲精品一区二区三区在线 | 美女黄网站人色视频免费国产 | 一本色道久久综合狠狠躁 | 国产人妻人伦精品 | 亚洲熟妇色xxxxx欧美老妇 | 久久国产劲爆∧v内射 | 色妞www精品免费视频 | 牲欲强的熟妇农村老妇女视频 | 亲嘴扒胸摸屁股激烈网站 | 亚洲乱码国产乱码精品精 | 成人免费无码大片a毛片 | 亚洲国产精品久久久天堂 | 性欧美疯狂xxxxbbbb | 国产莉萝无码av在线播放 | 亚洲午夜久久久影院 | 欧美国产日韩久久mv | 久久精品女人的天堂av | 成 人影片 免费观看 | 久久精品人人做人人综合 | 亚洲码国产精品高潮在线 | 国产亚洲精品久久久久久 | 99久久久无码国产aaa精品 | 国产无套粉嫩白浆在线 | 乱人伦人妻中文字幕无码久久网 | 欧洲精品码一区二区三区免费看 | 天堂亚洲免费视频 | 一区二区三区乱码在线 | 欧洲 | 理论片87福利理论电影 | 久久综合色之久久综合 | 国产精品对白交换视频 | 中文精品久久久久人妻不卡 | 正在播放老肥熟妇露脸 | 日本xxxx色视频在线观看免费 | 亚洲精品中文字幕久久久久 | 国产色在线 | 国产 | 欧美丰满少妇xxxx性 | 天天综合网天天综合色 | 欧美成人家庭影院 | 久久精品国产精品国产精品污 | 强奷人妻日本中文字幕 | 玩弄少妇高潮ⅹxxxyw | 亚洲精品久久久久中文第一幕 | 国产suv精品一区二区五 | 无遮挡国产高潮视频免费观看 | 日韩欧美中文字幕在线三区 | 国产亚洲精品久久久闺蜜 | 久久久婷婷五月亚洲97号色 | 久久综合激激的五月天 | 免费无码av一区二区 | 少妇高潮一区二区三区99 | 狠狠色丁香久久婷婷综合五月 | 鲁大师影院在线观看 | 亚洲无人区一区二区三区 | 三上悠亚人妻中文字幕在线 | 亚洲s码欧洲m码国产av | 久久国产精品精品国产色婷婷 | 300部国产真实乱 | 久久www免费人成人片 | 国产人成高清在线视频99最全资源 | 全球成人中文在线 | 日韩精品a片一区二区三区妖精 | 蜜桃视频插满18在线观看 | 无码福利日韩神码福利片 | 国产va免费精品观看 | 免费国产黄网站在线观看 | 最新国产乱人伦偷精品免费网站 | 亚洲娇小与黑人巨大交 | 免费观看又污又黄的网站 | 亚洲国产欧美在线成人 | 日本www一道久久久免费榴莲 | 久久久久免费精品国产 | 国产成人精品视频ⅴa片软件竹菊 | 国产一区二区三区日韩精品 | 日韩少妇白浆无码系列 | 久久久久免费看成人影片 | 色一情一乱一伦一视频免费看 | 国内综合精品午夜久久资源 | 88国产精品欧美一区二区三区 | 蜜桃视频插满18在线观看 | 久久亚洲精品成人无码 | 久久精品国产99精品亚洲 | 学生妹亚洲一区二区 | 亚洲va欧美va天堂v国产综合 | 午夜性刺激在线视频免费 | 牛和人交xxxx欧美 | 免费人成在线视频无码 | 国产性生大片免费观看性 | 真人与拘做受免费视频 | 欧美日韩综合一区二区三区 | 天下第一社区视频www日本 | 人妻少妇精品久久 | 中文字幕无码日韩专区 | 狠狠噜狠狠狠狠丁香五月 | 色综合久久久无码中文字幕 | 性做久久久久久久免费看 | a在线亚洲男人的天堂 | v一区无码内射国产 | 中文字幕乱码人妻无码久久 | 麻豆人妻少妇精品无码专区 | 日产国产精品亚洲系列 | www国产精品内射老师 | 国内精品久久毛片一区二区 | 精品国偷自产在线视频 | 中国女人内谢69xxxxxa片 | 国产三级精品三级男人的天堂 | 国产精品成人av在线观看 | 小鲜肉自慰网站xnxx | 午夜福利一区二区三区在线观看 | 99麻豆久久久国产精品免费 | 噜噜噜亚洲色成人网站 | 色综合天天综合狠狠爱 | 国产精品理论片在线观看 | 波多野结衣一区二区三区av免费 | 欧美亚洲国产一区二区三区 | 欧美日韩视频无码一区二区三 | 亚洲精品久久久久中文第一幕 | 国产成人无码av一区二区 | 老司机亚洲精品影院无码 | 色婷婷综合激情综在线播放 | 亚洲aⅴ无码成人网站国产app | 精品国产一区av天美传媒 | 国内丰满熟女出轨videos | 性欧美videos高清精品 | 九九热爱视频精品 | 成人欧美一区二区三区黑人 | 国产美女精品一区二区三区 | 99麻豆久久久国产精品免费 | 骚片av蜜桃精品一区 | 黑人玩弄人妻中文在线 | 午夜熟女插插xx免费视频 | 亚洲国产精品无码一区二区三区 | 色欲人妻aaaaaaa无码 | 午夜免费福利小电影 | 国产精品久久久久9999小说 | 国产亚洲日韩欧美另类第八页 | 黑人粗大猛烈进出高潮视频 | 极品嫩模高潮叫床 | 欧美35页视频在线观看 | 天堂а√在线中文在线 | 日本精品人妻无码免费大全 | yw尤物av无码国产在线观看 | 女人和拘做爰正片视频 | 天堂无码人妻精品一区二区三区 | 久久久久久亚洲精品a片成人 | 午夜精品一区二区三区的区别 | 欧美日韩亚洲国产精品 | 377p欧洲日本亚洲大胆 | 偷窥日本少妇撒尿chinese | 曰韩无码二三区中文字幕 | 男人的天堂av网站 | 久久久久se色偷偷亚洲精品av | 欧美人与动性行为视频 | 国产成人无码区免费内射一片色欲 | 无码毛片视频一区二区本码 | 国产精品久久国产三级国 | 99久久人妻精品免费一区 | 牲欲强的熟妇农村老妇女视频 | 亚洲成av人影院在线观看 | 国产精品美女久久久久av爽李琼 | 亚洲色欲久久久综合网东京热 | 国产香蕉尹人综合在线观看 | 扒开双腿吃奶呻吟做受视频 | 红桃av一区二区三区在线无码av | 思思久久99热只有频精品66 | 天干天干啦夜天干天2017 | 欧美国产日产一区二区 | 天堂亚洲免费视频 | 福利一区二区三区视频在线观看 | 精品一区二区三区波多野结衣 | 99久久精品无码一区二区毛片 | 国产av无码专区亚洲a∨毛片 | 在线欧美精品一区二区三区 | 对白脏话肉麻粗话av | 青草青草久热国产精品 | 亚洲欧美色中文字幕在线 | 亚洲性无码av中文字幕 | 蜜桃视频韩日免费播放 | 99久久精品午夜一区二区 | 欧美亚洲国产一区二区三区 | 国产精品办公室沙发 | 国产超级va在线观看视频 | 亚洲啪av永久无码精品放毛片 | 日韩精品一区二区av在线 | 亚洲狠狠婷婷综合久久 | 国产免费久久精品国产传媒 | 男女性色大片免费网站 | 日本xxxx色视频在线观看免费 | 精品久久久久久人妻无码中文字幕 | 亚洲成av人片在线观看无码不卡 | 性色欲网站人妻丰满中文久久不卡 | 99精品视频在线观看免费 | a国产一区二区免费入口 | 成人试看120秒体验区 | 日日天日日夜日日摸 | 亚洲精品综合一区二区三区在线 | 内射老妇bbwx0c0ck | 国产成人精品一区二区在线小狼 | 亚洲精品欧美二区三区中文字幕 | 丰满人妻一区二区三区免费视频 | 欧美人与物videos另类 | 牛和人交xxxx欧美 | 亚洲国产av美女网站 | 久久国产精品萌白酱免费 | 国产亚洲精品久久久闺蜜 | 亚洲欧美综合区丁香五月小说 | 欧美一区二区三区 | 精品水蜜桃久久久久久久 | 美女扒开屁股让男人桶 | 欧美野外疯狂做受xxxx高潮 | 欧美freesex黑人又粗又大 | 成人aaa片一区国产精品 | 高潮毛片无遮挡高清免费视频 | 国产凸凹视频一区二区 | 97色伦图片97综合影院 | 国产莉萝无码av在线播放 | 国产午夜手机精彩视频 | 精品无码成人片一区二区98 | 国产69精品久久久久app下载 | 无遮挡国产高潮视频免费观看 | 色偷偷人人澡人人爽人人模 | 国产人妻大战黑人第1集 | 亚洲欧洲中文日韩av乱码 | 日本精品人妻无码免费大全 | 激情内射日本一区二区三区 | 久久国产劲爆∧v内射 | 精品无码国产自产拍在线观看蜜 | 久久aⅴ免费观看 | 黄网在线观看免费网站 | 国产成人综合美国十次 | 日本一区二区三区免费高清 | 精品国产一区二区三区四区 | 一本色道婷婷久久欧美 | 亚洲午夜无码久久 | 中文字幕亚洲情99在线 | 欧美丰满熟妇xxxx性ppx人交 | 女人被男人爽到呻吟的视频 | 欧美精品免费观看二区 | 99精品久久毛片a片 | 蜜桃视频韩日免费播放 | 秋霞成人午夜鲁丝一区二区三区 | 波多野结衣高清一区二区三区 | 国产人妻精品一区二区三区 | 亚洲一区二区三区国产精华液 | 男人的天堂av网站 | 装睡被陌生人摸出水好爽 | 国产亚洲tv在线观看 | 国产av久久久久精东av | 亲嘴扒胸摸屁股激烈网站 | 麻豆成人精品国产免费 | 无码一区二区三区在线观看 | 1000部夫妻午夜免费 | 亚洲区小说区激情区图片区 | 亚洲男女内射在线播放 | 午夜时刻免费入口 | 乱码午夜-极国产极内射 | 亚洲无人区午夜福利码高清完整版 | 国产偷国产偷精品高清尤物 | 双乳奶水饱满少妇呻吟 | 日日碰狠狠丁香久燥 | 国产成人无码av一区二区 | 老熟女重囗味hdxx69 | 97无码免费人妻超级碰碰夜夜 | 色欲久久久天天天综合网精品 | 亚洲 高清 成人 动漫 | 亚洲高清偷拍一区二区三区 | 日韩无套无码精品 | 熟妇激情内射com | 伊人久久大香线蕉av一区二区 | 无码精品人妻一区二区三区av | 亚洲va欧美va天堂v国产综合 | 精品久久8x国产免费观看 | 亚洲精品无码人妻无码 | 国产色视频一区二区三区 | 天堂а√在线地址中文在线 | 国产精品久久久久9999小说 | 国产偷抇久久精品a片69 | 内射白嫩少妇超碰 | 麻豆果冻传媒2021精品传媒一区下载 | 我要看www免费看插插视频 | 精品偷拍一区二区三区在线看 | 狠狠综合久久久久综合网 | 无码人妻出轨黑人中文字幕 | 熟妇女人妻丰满少妇中文字幕 | 日本va欧美va欧美va精品 | 亚洲日韩一区二区 | 日本在线高清不卡免费播放 | 亚洲国产精品美女久久久久 | 人妻少妇精品无码专区二区 | 无码国产乱人伦偷精品视频 | 久久综合九色综合欧美狠狠 | 狠狠亚洲超碰狼人久久 | 日日麻批免费40分钟无码 | 清纯唯美经典一区二区 | 撕开奶罩揉吮奶头视频 | 国产无遮挡吃胸膜奶免费看 | 中文字幕乱码中文乱码51精品 | 黑人大群体交免费视频 | 日日夜夜撸啊撸 | 国产女主播喷水视频在线观看 | 婷婷五月综合缴情在线视频 | 人人爽人人澡人人人妻 | 国内精品人妻无码久久久影院 | 欧美日韩一区二区三区自拍 | 丝袜 中出 制服 人妻 美腿 | 纯爱无遮挡h肉动漫在线播放 | 欧美日本日韩 | 大屁股大乳丰满人妻 | 日本肉体xxxx裸交 | 男女下面进入的视频免费午夜 | 88国产精品欧美一区二区三区 | 亚洲熟悉妇女xxx妇女av | 99精品国产综合久久久久五月天 | 97精品人妻一区二区三区香蕉 | 波多野结衣一区二区三区av免费 | 久久久精品国产sm最大网站 | 中文字幕日韩精品一区二区三区 | 亚洲日本va午夜在线电影 | 中文字幕无码人妻少妇免费 | 国色天香社区在线视频 | 亚洲欧美精品伊人久久 | 欧美人与牲动交xxxx | 婷婷丁香五月天综合东京热 | 国产精品沙发午睡系列 | 波多野结衣av一区二区全免费观看 | 2020最新国产自产精品 | 亚洲日韩中文字幕在线播放 | 精品久久久久久人妻无码中文字幕 | 无遮挡啪啪摇乳动态图 | 亚洲成av人片在线观看无码不卡 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产精品美女久久久久av爽李琼 | 无码人妻丰满熟妇区五十路百度 | 亚洲爆乳精品无码一区二区三区 | 熟女少妇在线视频播放 | 亚洲欧洲日本无在线码 | 中文字幕精品av一区二区五区 | 亚洲熟妇自偷自拍另类 | 大肉大捧一进一出视频出来呀 | 撕开奶罩揉吮奶头视频 | 少妇性俱乐部纵欲狂欢电影 | 内射爽无广熟女亚洲 | 熟妇人妻激情偷爽文 | 国产精品毛多多水多 | 国产精品资源一区二区 | 中文字幕无码热在线视频 | 国产成人无码av片在线观看不卡 | 久久97精品久久久久久久不卡 | 又大又硬又黄的免费视频 | 日本肉体xxxx裸交 | 国产人妻精品一区二区三区 | 国产无av码在线观看 | 成人无码影片精品久久久 | 中文字幕色婷婷在线视频 | 亚洲精品成人av在线 | 欧美大屁股xxxxhd黑色 | 中文字幕乱妇无码av在线 | 麻豆md0077饥渴少妇 | 天天拍夜夜添久久精品大 | 欧美精品一区二区精品久久 | 精品一二三区久久aaa片 | 久久久精品成人免费观看 | 欧美高清在线精品一区 | 乱人伦人妻中文字幕无码久久网 | 色婷婷久久一区二区三区麻豆 | 日本xxxx色视频在线观看免费 | 久久久精品欧美一区二区免费 | 曰本女人与公拘交酡免费视频 | 久久久精品成人免费观看 | 亚洲成a人一区二区三区 | 国产午夜手机精彩视频 | a片免费视频在线观看 | 国产猛烈高潮尖叫视频免费 | 曰韩无码二三区中文字幕 | 麻豆国产97在线 | 欧洲 | 青青草原综合久久大伊人精品 | 欧洲欧美人成视频在线 | 日本丰满护士爆乳xxxx | 一区二区传媒有限公司 | 国产成人精品三级麻豆 | a在线观看免费网站大全 | 国产成人精品无码播放 | 色综合天天综合狠狠爱 | 永久黄网站色视频免费直播 | 国产精品高潮呻吟av久久4虎 | 欧美 日韩 人妻 高清 中文 | 青青久在线视频免费观看 | 高潮毛片无遮挡高清免费视频 | 在线欧美精品一区二区三区 | 狠狠cao日日穞夜夜穞av | a片免费视频在线观看 | 欧美日本免费一区二区三区 | 成人女人看片免费视频放人 | 国产激情综合五月久久 | 国产成人无码午夜视频在线观看 | 久久久久se色偷偷亚洲精品av | 久久国产精品精品国产色婷婷 | 给我免费的视频在线观看 | 无套内谢老熟女 | 国产精品理论片在线观看 | 欧洲vodafone精品性 | 国产无套粉嫩白浆在线 | 国产美女精品一区二区三区 | 女人被爽到呻吟gif动态图视看 | 好屌草这里只有精品 | 精品国精品国产自在久国产87 | 亚洲一区二区三区 | 国产精品久久久av久久久 | 欧美国产日韩亚洲中文 | 色窝窝无码一区二区三区色欲 | 男人的天堂av网站 | 在线播放无码字幕亚洲 | 国产超级va在线观看视频 | 激情内射亚州一区二区三区爱妻 | 亚无码乱人伦一区二区 | 婷婷丁香五月天综合东京热 | 国产肉丝袜在线观看 | 国内丰满熟女出轨videos | 中文字幕日韩精品一区二区三区 | 综合网日日天干夜夜久久 | 亚洲综合在线一区二区三区 | 99麻豆久久久国产精品免费 | 曰本女人与公拘交酡免费视频 | 亚洲成a人片在线观看无码3d | 在线播放亚洲第一字幕 | 欧美怡红院免费全部视频 | 黑森林福利视频导航 | 丰满少妇熟乱xxxxx视频 | 国产精品99久久精品爆乳 | 在线播放亚洲第一字幕 | 国产av无码专区亚洲awww | 小鲜肉自慰网站xnxx | 中文无码精品a∨在线观看不卡 | 无码人妻出轨黑人中文字幕 | 最新版天堂资源中文官网 | 久久午夜无码鲁丝片秋霞 | 思思久久99热只有频精品66 | 中文字幕亚洲情99在线 | 日日摸天天摸爽爽狠狠97 | 国产真人无遮挡作爱免费视频 | 欧美日韩一区二区综合 | 色综合久久久久综合一本到桃花网 | 国产另类ts人妖一区二区 | 成人性做爰aaa片免费看不忠 | av在线亚洲欧洲日产一区二区 | 草草网站影院白丝内射 | 亚洲爆乳无码专区 | 久久久av男人的天堂 | 欧美 丝袜 自拍 制服 另类 | 在线播放免费人成毛片乱码 | 澳门永久av免费网站 | 中文字幕久久久久人妻 | 中文字幕av无码一区二区三区电影 | 成人精品天堂一区二区三区 | 国产口爆吞精在线视频 | 夜精品a片一区二区三区无码白浆 | 男人和女人高潮免费网站 | 狠狠色欧美亚洲狠狠色www | 国产极品视觉盛宴 | 人人妻人人藻人人爽欧美一区 | 亚洲日韩一区二区 | 亚洲国产精品无码一区二区三区 | 久久99精品久久久久久 | av无码不卡在线观看免费 | 国産精品久久久久久久 | 亚洲一区二区三区在线观看网站 | 国产麻豆精品一区二区三区v视界 | 无码中文字幕色专区 | 久久久婷婷五月亚洲97号色 | 十八禁视频网站在线观看 | 麻豆国产人妻欲求不满谁演的 | 1000部夫妻午夜免费 | 欧美丰满熟妇xxxx性ppx人交 | 国产精品毛片一区二区 | 亚洲国产精品久久久天堂 | 国产女主播喷水视频在线观看 | 东京无码熟妇人妻av在线网址 | 欧美xxxxx精品 | 无码人妻久久一区二区三区不卡 | 超碰97人人做人人爱少妇 | 亚洲精品一区二区三区在线观看 | 国产无套粉嫩白浆在线 | 精品厕所偷拍各类美女tp嘘嘘 | 日韩av激情在线观看 | 中文字幕乱码人妻二区三区 | 亚洲国产精品一区二区第一页 | 少妇人妻av毛片在线看 | 国语自产偷拍精品视频偷 | 亚洲精品久久久久中文第一幕 | 国产sm调教视频在线观看 | 久久精品国产99精品亚洲 | 波多野结衣一区二区三区av免费 | 高清国产亚洲精品自在久久 | 国产无遮挡又黄又爽免费视频 | 天天爽夜夜爽夜夜爽 | 国产性生交xxxxx无码 | 九月婷婷人人澡人人添人人爽 | 国产精品久久久久无码av色戒 | 3d动漫精品啪啪一区二区中 | 波多野42部无码喷潮在线 | 97久久精品无码一区二区 | 国产一区二区三区日韩精品 | 日本护士毛茸茸高潮 | 野狼第一精品社区 | 久久www免费人成人片 | 熟妇人妻中文av无码 | 久久午夜夜伦鲁鲁片无码免费 | 荫蒂被男人添的好舒服爽免费视频 | 亚洲自偷精品视频自拍 | 一本无码人妻在中文字幕免费 | 色综合久久久无码中文字幕 | 色欲人妻aaaaaaa无码 | 国产精品亚洲综合色区韩国 | 亚洲伊人久久精品影院 | 婷婷五月综合激情中文字幕 | 麻花豆传媒剧国产免费mv在线 | 2020最新国产自产精品 | 久青草影院在线观看国产 | 国产偷国产偷精品高清尤物 | 国产激情艳情在线看视频 | 人人妻人人澡人人爽欧美一区九九 | 捆绑白丝粉色jk震动捧喷白浆 | 免费人成在线观看网站 | 在线观看国产一区二区三区 | 老子影院午夜精品无码 | 正在播放老肥熟妇露脸 | 少妇性荡欲午夜性开放视频剧场 | 亚洲欧美精品伊人久久 | 亚洲色在线无码国产精品不卡 | 国内精品九九久久久精品 | 麻豆国产97在线 | 欧洲 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 无码人妻av免费一区二区三区 | 久久国产36精品色熟妇 | 亚洲自偷自偷在线制服 | 国产精品毛多多水多 | 久久综合激激的五月天 | www国产亚洲精品久久网站 | 精品国产成人一区二区三区 | 无码人妻丰满熟妇区五十路百度 | 国产性生大片免费观看性 | 欧美色就是色 | 无码播放一区二区三区 | 久精品国产欧美亚洲色aⅴ大片 | 久久久久av无码免费网 | 鲁一鲁av2019在线 | 亚洲国产精品无码一区二区三区 | 国产成人综合在线女婷五月99播放 | 无码人妻黑人中文字幕 | 成人毛片一区二区 | av在线亚洲欧洲日产一区二区 | 日本精品少妇一区二区三区 | 强开小婷嫩苞又嫩又紧视频 | 精品成在人线av无码免费看 | 国产成人精品久久亚洲高清不卡 | 久久亚洲精品中文字幕无男同 | 亚洲 高清 成人 动漫 | 久久精品一区二区三区四区 | 强伦人妻一区二区三区视频18 | 精品久久久久久亚洲精品 | 免费看男女做好爽好硬视频 | 人人妻人人澡人人爽欧美精品 | 色爱情人网站 | 国产婷婷色一区二区三区在线 | av无码不卡在线观看免费 | 国色天香社区在线视频 | 清纯唯美经典一区二区 | 国产成人一区二区三区别 | 天堂一区人妻无码 | 亚洲成av人片天堂网无码】 | 亚洲国产高清在线观看视频 | 2020最新国产自产精品 | 亚洲日韩一区二区 | 久久精品女人天堂av免费观看 | 奇米影视7777久久精品人人爽 | 少妇愉情理伦片bd | 亚洲码国产精品高潮在线 | 日本乱偷人妻中文字幕 | 曰本女人与公拘交酡免费视频 | 日韩在线不卡免费视频一区 | 99久久人妻精品免费一区 | 牲欲强的熟妇农村老妇女 | 亚洲а∨天堂久久精品2021 | 亚洲精品中文字幕乱码 | 日韩人妻系列无码专区 | 久久久亚洲欧洲日产国码αv | 亚洲欧洲日本无在线码 | 伊人久久大香线蕉av一区二区 | 国产精品理论片在线观看 | 99er热精品视频 | 中文字幕日产无线码一区 | 亚洲欧洲日本无在线码 | 亚洲の无码国产の无码影院 | 九九综合va免费看 | 天天综合网天天综合色 | 色综合天天综合狠狠爱 | 国产成人精品无码播放 | 荫蒂被男人添的好舒服爽免费视频 | 中文字幕乱码中文乱码51精品 | 欧美xxxx黑人又粗又长 | 国产精品沙发午睡系列 | 少妇的肉体aa片免费 | 俺去俺来也www色官网 | 亚洲精品一区二区三区在线 | 免费人成网站视频在线观看 | 国产亚洲tv在线观看 | 55夜色66夜色国产精品视频 | 国产亚洲人成a在线v网站 | 亚洲经典千人经典日产 | 欧美丰满少妇xxxx性 | 97无码免费人妻超级碰碰夜夜 | 无码人妻av免费一区二区三区 | 亚洲精品久久久久久久久久久 | 色一情一乱一伦一视频免费看 | 亚洲色偷偷男人的天堂 | 天天做天天爱天天爽综合网 | 久久久久se色偷偷亚洲精品av | 欧美性生交活xxxxxdddd | 熟妇人妻激情偷爽文 | 亚洲阿v天堂在线 | 欧美日韩久久久精品a片 | 国产精品久久久一区二区三区 | 久久精品无码一区二区三区 | 草草网站影院白丝内射 | 国产内射老熟女aaaa | 国产午夜福利100集发布 | 欧美性生交活xxxxxdddd | 国产av无码专区亚洲a∨毛片 | 久久人妻内射无码一区三区 | 日本乱偷人妻中文字幕 | 欧美老人巨大xxxx做受 | 一区二区传媒有限公司 | 国产xxx69麻豆国语对白 | 国精产品一品二品国精品69xx | 国产婷婷色一区二区三区在线 | 久久天天躁狠狠躁夜夜免费观看 | 国产艳妇av在线观看果冻传媒 | 久久精品国产99久久6动漫 | 男女超爽视频免费播放 | 国产区女主播在线观看 | 亚洲欧美国产精品久久 | 人妻夜夜爽天天爽三区 | 国产av剧情md精品麻豆 | 少妇的肉体aa片免费 | 国产无遮挡吃胸膜奶免费看 | 日本免费一区二区三区最新 | 骚片av蜜桃精品一区 | 波多野结衣av在线观看 | 亚洲国产精品无码一区二区三区 | 99久久精品午夜一区二区 | 国产尤物精品视频 | 亚洲中文字幕在线无码一区二区 | 国产日产欧产精品精品app | 呦交小u女精品视频 | 1000部啪啪未满十八勿入下载 | 欧美人与善在线com | 一个人看的视频www在线 | 亚洲综合色区中文字幕 | 国产精品免费大片 | 日本护士xxxxhd少妇 | 欧美激情一区二区三区成人 | 免费国产成人高清在线观看网站 | 亚洲人成网站在线播放942 | 国产av人人夜夜澡人人爽麻豆 | 国产午夜亚洲精品不卡下载 | 亚洲成av人片在线观看无码不卡 | 精品国产一区二区三区四区在线看 | 国产av剧情md精品麻豆 | 樱花草在线播放免费中文 | 亚洲综合在线一区二区三区 | 人人妻人人澡人人爽欧美一区 | 一本色道久久综合狠狠躁 | 国产精品嫩草久久久久 | 人妻插b视频一区二区三区 | 精品无码av一区二区三区 | 好男人社区资源 | 少妇被粗大的猛进出69影院 | 女人被男人爽到呻吟的视频 | 国产精品美女久久久网av | 国产精品办公室沙发 | 久久久久免费精品国产 | 色狠狠av一区二区三区 | 精品人人妻人人澡人人爽人人 | 99精品国产综合久久久久五月天 | 成人试看120秒体验区 | 亚洲熟熟妇xxxx | 蜜桃av抽搐高潮一区二区 | 欧美人与善在线com | 欧美日韩在线亚洲综合国产人 | 啦啦啦www在线观看免费视频 | 国产亚洲精品久久久闺蜜 | 99久久久无码国产精品免费 | 国产绳艺sm调教室论坛 | a国产一区二区免费入口 | 亚洲 高清 成人 动漫 | 99久久无码一区人妻 | 天天爽夜夜爽夜夜爽 | 荫蒂添的好舒服视频囗交 | 日韩精品无码一区二区中文字幕 | 中文字幕日产无线码一区 | 亚洲国产精品成人久久蜜臀 | 在线精品亚洲一区二区 | 亚洲国产精品久久久久久 | 未满成年国产在线观看 | 老熟妇仑乱视频一区二区 | 麻豆果冻传媒2021精品传媒一区下载 | 少妇高潮一区二区三区99 | 四虎影视成人永久免费观看视频 | 日本va欧美va欧美va精品 | 国产欧美熟妇另类久久久 | 青青青手机频在线观看 | 国产9 9在线 | 中文 | 亚洲 高清 成人 动漫 | 久久熟妇人妻午夜寂寞影院 | 天天躁夜夜躁狠狠是什么心态 | 久久国产精品偷任你爽任你 | 久久精品女人天堂av免费观看 | 欧美zoozzooz性欧美 | 色欲久久久天天天综合网精品 | 强奷人妻日本中文字幕 | www一区二区www免费 | 人妻熟女一区 | 大屁股大乳丰满人妻 | 久久99精品国产麻豆 | 少妇性荡欲午夜性开放视频剧场 | 丰腴饱满的极品熟妇 | 98国产精品综合一区二区三区 | 国产香蕉尹人视频在线 | 欧美乱妇无乱码大黄a片 | 四虎影视成人永久免费观看视频 | 99久久久无码国产精品免费 | 天天拍夜夜添久久精品大 | √天堂资源地址中文在线 | 丰满肥臀大屁股熟妇激情视频 | 欧美成人家庭影院 | 日本大香伊一区二区三区 | 午夜福利电影 | 色狠狠av一区二区三区 | 国产猛烈高潮尖叫视频免费 | 精品国精品国产自在久国产87 | 中文字幕精品av一区二区五区 | 99精品无人区乱码1区2区3区 | 波多野结衣av一区二区全免费观看 | 色老头在线一区二区三区 | 一个人看的www免费视频在线观看 | 一本一道久久综合久久 | 日产国产精品亚洲系列 | √8天堂资源地址中文在线 | 草草网站影院白丝内射 | 亚洲一区二区三区国产精华液 | 麻豆蜜桃av蜜臀av色欲av | 婷婷丁香五月天综合东京热 | 7777奇米四色成人眼影 | 日韩精品无码一本二本三本色 | 精品少妇爆乳无码av无码专区 | 少妇无码av无码专区在线观看 | 亚洲自偷精品视频自拍 | 国产热a欧美热a在线视频 | 欧美人与禽猛交狂配 | 曰本女人与公拘交酡免费视频 | 日本免费一区二区三区最新 | 亚洲成a人片在线观看无码 | 无码人妻丰满熟妇区毛片18 | 亚洲成av人片在线观看无码不卡 | 在线欧美精品一区二区三区 | 国产精品视频免费播放 | 黄网在线观看免费网站 | 熟妇人妻无乱码中文字幕 | 妺妺窝人体色www婷婷 | 成人精品一区二区三区中文字幕 | 国产黄在线观看免费观看不卡 | 国产sm调教视频在线观看 | 国产精品视频免费播放 | 清纯唯美经典一区二区 | 国精产品一品二品国精品69xx | 国产香蕉97碰碰久久人人 | 夜先锋av资源网站 | 成人性做爰aaa片免费看 | 露脸叫床粗话东北少妇 | 久久人人爽人人人人片 | 中文字幕人妻无码一区二区三区 | 亚洲欧美日韩国产精品一区二区 | √天堂资源地址中文在线 | 亚洲国产欧美日韩精品一区二区三区 | 久久综合网欧美色妞网 | 乱中年女人伦av三区 | 日韩精品无码免费一区二区三区 | 1000部夫妻午夜免费 | 无码人妻久久一区二区三区不卡 | 又紧又大又爽精品一区二区 | 国产精品久久久久影院嫩草 | 中文字幕日产无线码一区 | 国产又爽又黄又刺激的视频 | 亚洲成a人片在线观看无码3d | 婷婷六月久久综合丁香 | 精品国产乱码久久久久乱码 | 国产成人无码专区 | 77777熟女视频在线观看 а天堂中文在线官网 | 人妻互换免费中文字幕 | 国产精品美女久久久 | 丰满少妇弄高潮了www | 色噜噜亚洲男人的天堂 | 国产午夜亚洲精品不卡 | 久久aⅴ免费观看 | 国产人妻久久精品二区三区老狼 | 亚洲va中文字幕无码久久不卡 | 亚洲国产av精品一区二区蜜芽 | 永久免费观看国产裸体美女 | 亚洲色欲久久久综合网东京热 | 国产一区二区不卡老阿姨 | 日本精品少妇一区二区三区 | 亚洲 另类 在线 欧美 制服 | 国产亚洲精品久久久久久久 | а√天堂www在线天堂小说 | 老头边吃奶边弄进去呻吟 | 成人免费视频在线观看 | 久久成人a毛片免费观看网站 | 亚洲日本va中文字幕 | 97夜夜澡人人爽人人喊中国片 | 性生交大片免费看l | 国产莉萝无码av在线播放 | 久久综合给久久狠狠97色 | 麻豆国产人妻欲求不满 | 成人免费无码大片a毛片 | 欧美黑人性暴力猛交喷水 | 老熟女重囗味hdxx69 | 色婷婷av一区二区三区之红樱桃 | 99麻豆久久久国产精品免费 | 国产成人无码午夜视频在线观看 | 免费国产成人高清在线观看网站 | 中文字幕乱码人妻无码久久 | 国产黄在线观看免费观看不卡 | 特大黑人娇小亚洲女 | 131美女爱做视频 | 亚洲精品一区三区三区在线观看 | 欧美一区二区三区 | 亚洲精品久久久久中文第一幕 | 久久无码中文字幕免费影院蜜桃 | av无码电影一区二区三区 | 狠狠色欧美亚洲狠狠色www | 亚洲中文字幕久久无码 | 老头边吃奶边弄进去呻吟 | 国产亚洲tv在线观看 | 成熟妇人a片免费看网站 | 午夜成人1000部免费视频 | 波多野结衣一区二区三区av免费 | 欧美日韩视频无码一区二区三 | 性欧美牲交xxxxx视频 | 久精品国产欧美亚洲色aⅴ大片 | 丰满人妻精品国产99aⅴ | 国产手机在线αⅴ片无码观看 | 国产人妻精品一区二区三区 | 亚洲熟妇自偷自拍另类 | 国产人妖乱国产精品人妖 | 欧美 丝袜 自拍 制服 另类 | 国产精品va在线观看无码 | 国产精品无码成人午夜电影 | 久久www免费人成人片 | 少妇高潮喷潮久久久影院 | 精品国产aⅴ无码一区二区 | 99麻豆久久久国产精品免费 | 日日干夜夜干 | 装睡被陌生人摸出水好爽 | 麻花豆传媒剧国产免费mv在线 | 4hu四虎永久在线观看 | 精品国产一区av天美传媒 | 大肉大捧一进一出视频出来呀 | 欧洲精品码一区二区三区免费看 | 婷婷丁香六月激情综合啪 | 国产成人精品一区二区在线小狼 | 国产偷国产偷精品高清尤物 | 国产 精品 自在自线 | 亚洲熟妇自偷自拍另类 | 在线视频网站www色 | 丰满诱人的人妻3 | 久久精品99久久香蕉国产色戒 | 超碰97人人射妻 | 成人欧美一区二区三区 | 国产亚洲精品久久久久久大师 | 久久精品中文字幕大胸 | 亚洲男女内射在线播放 | 人人妻人人藻人人爽欧美一区 | 伊人色综合久久天天小片 | 成人免费视频视频在线观看 免费 | 亚洲无人区午夜福利码高清完整版 | 熟妇女人妻丰满少妇中文字幕 | 内射巨臀欧美在线视频 | 久久亚洲中文字幕精品一区 | 国产成人无码av一区二区 | 在线亚洲高清揄拍自拍一品区 | 亚洲国产成人av在线观看 | 性史性农村dvd毛片 | 国产色精品久久人妻 | 国产亚av手机在线观看 | 天天躁日日躁狠狠躁免费麻豆 | 亚洲欧美中文字幕5发布 | 亚洲成a人片在线观看无码3d | 啦啦啦www在线观看免费视频 | 女人和拘做爰正片视频 | 麻豆蜜桃av蜜臀av色欲av | 中文精品久久久久人妻不卡 | 亚洲一区二区三区香蕉 | 无码国产色欲xxxxx视频 | 午夜性刺激在线视频免费 | 精品厕所偷拍各类美女tp嘘嘘 | 中文字幕av无码一区二区三区电影 | 欧美一区二区三区视频在线观看 | 一个人看的www免费视频在线观看 | 99久久精品国产一区二区蜜芽 | aa片在线观看视频在线播放 | 玩弄中年熟妇正在播放 | 秋霞成人午夜鲁丝一区二区三区 | 国产精品成人av在线观看 | 我要看www免费看插插视频 | 成人精品天堂一区二区三区 | 亚洲精品鲁一鲁一区二区三区 | 少妇性俱乐部纵欲狂欢电影 | 国产另类ts人妖一区二区 | 丝袜足控一区二区三区 | 一本色道久久综合狠狠躁 | 久久久久久久女国产乱让韩 | 亚洲色成人中文字幕网站 | 亚洲成av人片天堂网无码】 | 成人精品天堂一区二区三区 | 日日摸夜夜摸狠狠摸婷婷 | 青青青爽视频在线观看 | 成熟人妻av无码专区 | 免费国产成人高清在线观看网站 | 亚洲综合色区中文字幕 | 久久久久99精品国产片 | 亚洲成色在线综合网站 | 免费网站看v片在线18禁无码 | 2019午夜福利不卡片在线 | 亚洲一区二区三区偷拍女厕 | 一区二区三区乱码在线 | 欧洲 | 国产一区二区三区四区五区加勒比 | a国产一区二区免费入口 | 搡女人真爽免费视频大全 | 亚洲国产欧美日韩精品一区二区三区 | 国产明星裸体无码xxxx视频 | 97久久超碰中文字幕 | 亚洲精品午夜无码电影网 | 欧美精品无码一区二区三区 | 亚洲精品一区二区三区大桥未久 | 丰满少妇人妻久久久久久 | 亚洲精品国偷拍自产在线麻豆 | av香港经典三级级 在线 | √天堂资源地址中文在线 | 麻豆精品国产精华精华液好用吗 | 国产av无码专区亚洲a∨毛片 | 亚洲色www成人永久网址 | 欧美日韩综合一区二区三区 | 久久久久av无码免费网 | 成年美女黄网站色大免费视频 | 欧洲vodafone精品性 | 无码国产激情在线观看 | 九九热爱视频精品 | 精品国产一区二区三区四区 | 国产精品第一区揄拍无码 | 国精产品一区二区三区 | 午夜免费福利小电影 | 国精品人妻无码一区二区三区蜜柚 | 丰满护士巨好爽好大乳 | 高潮毛片无遮挡高清免费 | 亚洲成a人片在线观看日本 | 97se亚洲精品一区 | 欧美日韩综合一区二区三区 | 老司机亚洲精品影院 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 精品熟女少妇av免费观看 | 国产在线精品一区二区三区直播 | 久久国产精品精品国产色婷婷 | 欧洲极品少妇 | 在线亚洲高清揄拍自拍一品区 | 一二三四在线观看免费视频 | 99久久精品无码一区二区毛片 | 天堂一区人妻无码 | 成人无码影片精品久久久 | 成人欧美一区二区三区黑人 | 狠狠躁日日躁夜夜躁2020 | 精品午夜福利在线观看 | 国产精品福利视频导航 | 国产精品办公室沙发 | 亚洲午夜福利在线观看 | 久久精品国产日本波多野结衣 | 国产精品久久久久久无码 | 久久午夜夜伦鲁鲁片无码免费 | 在教室伦流澡到高潮hnp视频 | 色婷婷香蕉在线一区二区 | 午夜精品久久久久久久 | 亚洲 a v无 码免 费 成 人 a v | 国产亚洲精品精品国产亚洲综合 | 国产亚洲欧美日韩亚洲中文色 | 大地资源网第二页免费观看 | 老熟妇乱子伦牲交视频 | 特大黑人娇小亚洲女 | 亚洲精品久久久久avwww潮水 | 久久久精品456亚洲影院 | 四虎国产精品免费久久 | 激情内射日本一区二区三区 | 在线播放亚洲第一字幕 | 女人和拘做爰正片视频 | 麻豆精品国产精华精华液好用吗 | 国产成人无码区免费内射一片色欲 | 强开小婷嫩苞又嫩又紧视频 | 欧美老妇交乱视频在线观看 | 久久国产精品偷任你爽任你 | 久久午夜无码鲁丝片 | 麻豆果冻传媒2021精品传媒一区下载 | 性啪啪chinese东北女人 | 亚洲成a人片在线观看无码3d | 国产成人无码av在线影院 | 人人爽人人澡人人人妻 | 国产人妻精品午夜福利免费 | 久久99精品久久久久久动态图 | 人妻中文无码久热丝袜 | 国产成人人人97超碰超爽8 | 国产成人无码a区在线观看视频app | 久久久久免费精品国产 | 亚洲国产欧美在线成人 | 特黄特色大片免费播放器图片 | 99精品视频在线观看免费 | 黑森林福利视频导航 | 一个人免费观看的www视频 | 欧美性猛交xxxx富婆 | 天天拍夜夜添久久精品 | 熟妇人妻无码xxx视频 | 成人动漫在线观看 | 无码av中文字幕免费放 | 澳门永久av免费网站 | 色综合久久久久综合一本到桃花网 | 午夜性刺激在线视频免费 | 麻豆国产人妻欲求不满谁演的 | 久9re热视频这里只有精品 | 日本xxxx色视频在线观看免费 | 少妇太爽了在线观看 | 亚洲综合另类小说色区 | 国产香蕉尹人综合在线观看 | 国产 精品 自在自线 | 国产高潮视频在线观看 | 人妻少妇精品无码专区二区 | 天天躁日日躁狠狠躁免费麻豆 | 亚洲小说图区综合在线 | 性做久久久久久久久 | 性欧美牲交在线视频 | 国产激情精品一区二区三区 | 好爽又高潮了毛片免费下载 | 亚洲性无码av中文字幕 | 高潮毛片无遮挡高清免费 | 久久精品无码一区二区三区 | 丰满肥臀大屁股熟妇激情视频 | 国内老熟妇对白xxxxhd | 国产亚洲精品久久久闺蜜 | 亚洲国产av美女网站 | 欧洲熟妇色 欧美 | 一本大道久久东京热无码av | 久久久www成人免费毛片 | 玩弄少妇高潮ⅹxxxyw | 18精品久久久无码午夜福利 | 激情五月综合色婷婷一区二区 | 在线а√天堂中文官网 | 亚洲成在人网站无码天堂 | 一本久久a久久精品亚洲 | 55夜色66夜色国产精品视频 | 国产亚洲tv在线观看 | 综合激情五月综合激情五月激情1 | 国产精品久久精品三级 | 精品久久久久久亚洲精品 | 日本护士xxxxhd少妇 | 一本久久伊人热热精品中文字幕 | 久久无码专区国产精品s | 动漫av网站免费观看 | 国内精品久久久久久中文字幕 | 亚洲日本va午夜在线电影 | 蜜臀aⅴ国产精品久久久国产老师 | 亚洲欧美国产精品久久 | 宝宝好涨水快流出来免费视频 | 福利一区二区三区视频在线观看 | 国产av人人夜夜澡人人爽麻豆 | 日本丰满护士爆乳xxxx | 精品无码av一区二区三区 | 亚洲日本一区二区三区在线 | 一本久久a久久精品vr综合 | 一本久久伊人热热精品中文字幕 | 国产电影无码午夜在线播放 | 久久视频在线观看精品 | 欧美性生交xxxxx久久久 | 亚洲国产精品无码久久久久高潮 | 女人被男人躁得好爽免费视频 | 日韩av无码一区二区三区不卡 | 乱人伦人妻中文字幕无码 | 美女黄网站人色视频免费国产 | 人人妻人人澡人人爽人人精品浪潮 | 国产超级va在线观看视频 | 天堂а√在线中文在线 | 国产精品久久久久无码av色戒 | 亚洲呦女专区 | 中文字幕无码热在线视频 | 国产精品内射视频免费 | 亚洲毛片av日韩av无码 | 亚洲综合无码一区二区三区 | 黑人玩弄人妻中文在线 | 奇米影视7777久久精品 | 国产麻豆精品精东影业av网站 | 日本高清一区免费中文视频 | 久久99精品久久久久久动态图 | 国精品人妻无码一区二区三区蜜柚 | 久久亚洲中文字幕无码 | 久久精品国产99久久6动漫 | 亚洲一区二区三区无码久久 | 国内丰满熟女出轨videos | 欧美精品无码一区二区三区 | 亚洲色成人中文字幕网站 | 任你躁在线精品免费 | 亚洲无人区午夜福利码高清完整版 | 精品乱子伦一区二区三区 | 欧美黑人巨大xxxxx | 国产97色在线 | 免 | 亚洲色大成网站www国产 | 麻豆av传媒蜜桃天美传媒 | 秋霞特色aa大片 | 国产超碰人人爽人人做人人添 | 人人超人人超碰超国产 | 国产另类ts人妖一区二区 | 国产亚洲精品久久久久久国模美 | 亚洲无人区午夜福利码高清完整版 | 国产麻豆精品一区二区三区v视界 | 国产另类ts人妖一区二区 | 欧美丰满老熟妇xxxxx性 | 狠狠噜狠狠狠狠丁香五月 | 动漫av网站免费观看 | 狠狠综合久久久久综合网 | 正在播放老肥熟妇露脸 | 日韩 欧美 动漫 国产 制服 | 欧美 亚洲 国产 另类 | 双乳奶水饱满少妇呻吟 | 国产尤物精品视频 | 亚洲熟妇色xxxxx欧美老妇y | 亚洲午夜福利在线观看 | 一区二区三区高清视频一 | 久久久久99精品成人片 | 久久亚洲国产成人精品性色 | 一本久道久久综合婷婷五月 | 国产午夜精品一区二区三区嫩草 | 久久精品成人欧美大片 | 国产香蕉97碰碰久久人人 | 精品久久综合1区2区3区激情 | 狠狠色噜噜狠狠狠狠7777米奇 | 欧美老人巨大xxxx做受 | 欧美人与牲动交xxxx | 免费无码午夜福利片69 | 国产亚洲精品久久久久久国模美 | 影音先锋中文字幕无码 | 国产亚洲精品久久久久久国模美 | 性欧美熟妇videofreesex | 99久久久无码国产精品免费 | 国产婷婷色一区二区三区在线 | 永久免费观看美女裸体的网站 | 国内精品人妻无码久久久影院蜜桃 | 亚洲欧美日韩综合久久久 | 国产精品-区区久久久狼 | 波多野结衣av一区二区全免费观看 | 大地资源中文第3页 | 性欧美大战久久久久久久 | 又粗又大又硬又长又爽 | 四十如虎的丰满熟妇啪啪 | 国产卡一卡二卡三 | 国产精品无码永久免费888 | 狂野欧美性猛交免费视频 | 特黄特色大片免费播放器图片 | 国产性生交xxxxx无码 | 成 人 网 站国产免费观看 | 精品无码国产一区二区三区av | 精品成人av一区二区三区 | 黑人巨大精品欧美一区二区 | 国产激情无码一区二区app | 欧美老妇交乱视频在线观看 | 国产亚洲美女精品久久久2020 | 亚洲色成人中文字幕网站 | 色狠狠av一区二区三区 | 国精品人妻无码一区二区三区蜜柚 | 午夜精品一区二区三区的区别 | 欧美日韩人成综合在线播放 | 麻豆国产人妻欲求不满 | 欧美性猛交xxxx富婆 | 亚洲欧美综合区丁香五月小说 | 久久成人a毛片免费观看网站 | 国产另类ts人妖一区二区 | 国产一区二区三区四区五区加勒比 | 国产成人无码区免费内射一片色欲 | 久久国产36精品色熟妇 | 国产精品鲁鲁鲁 | 欧美老妇交乱视频在线观看 | 中文字幕 人妻熟女 | 亚洲精品久久久久久久久久久 | a在线观看免费网站大全 | 天堂久久天堂av色综合 | 成人免费视频视频在线观看 免费 | 波多野结衣aⅴ在线 | 久久久亚洲欧洲日产国码αv | 天天综合网天天综合色 | 亚洲a无码综合a国产av中文 | 无码吃奶揉捏奶头高潮视频 | 国产精品亚洲一区二区三区喷水 | 亚洲国产精品美女久久久久 | 国产av人人夜夜澡人人爽麻豆 | 成人一在线视频日韩国产 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 精品国产青草久久久久福利 | 精品国产福利一区二区 | 99精品无人区乱码1区2区3区 | 国产精品香蕉在线观看 | 国产三级精品三级男人的天堂 | 香港三级日本三级妇三级 | v一区无码内射国产 | 国产精品理论片在线观看 | √天堂资源地址中文在线 | 中文字幕无线码免费人妻 | 亚洲精品一区二区三区四区五区 | 国产av人人夜夜澡人人爽麻豆 | 午夜成人1000部免费视频 | 精品少妇爆乳无码av无码专区 | 亚洲欧洲中文日韩av乱码 | 欧美国产日韩亚洲中文 | 3d动漫精品啪啪一区二区中 | 国产精品人妻一区二区三区四 | 成人无码精品1区2区3区免费看 | 日韩欧美群交p片內射中文 | 一本大道久久东京热无码av | 午夜精品久久久久久久 | 婷婷综合久久中文字幕蜜桃三电影 | 少妇太爽了在线观看 | 久久精品国产99久久6动漫 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 国产一区二区三区四区五区加勒比 | 一区二区传媒有限公司 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 亚洲爆乳大丰满无码专区 | 亚洲 日韩 欧美 成人 在线观看 | 国产真实乱对白精彩久久 | 99re在线播放 | 福利一区二区三区视频在线观看 | 欧洲精品码一区二区三区免费看 | a片免费视频在线观看 | 国产深夜福利视频在线 | 日本饥渴人妻欲求不满 | 色综合久久久无码网中文 | 精品无码av一区二区三区 | 亚洲色欲久久久综合网东京热 | 欧美黑人性暴力猛交喷水 | 国产亚洲精品精品国产亚洲综合 | 人妻熟女一区 | 在线天堂新版最新版在线8 | 亚洲精品中文字幕久久久久 | 国产另类ts人妖一区二区 | 狠狠色色综合网站 | 久久久久国色av免费观看性色 | 国产精品久久久久久久影院 | 成人欧美一区二区三区黑人免费 | 给我免费的视频在线观看 | 在线亚洲高清揄拍自拍一品区 | 亚洲色www成人永久网址 | 久久人人爽人人爽人人片av高清 | 久久综合色之久久综合 | 精品人妻人人做人人爽 | 日韩精品无码一区二区中文字幕 | 午夜无码区在线观看 | 九月婷婷人人澡人人添人人爽 | 亚洲s色大片在线观看 | 免费网站看v片在线18禁无码 | 国产精品亚洲一区二区三区喷水 | 国产精品久久国产精品99 | 宝宝好涨水快流出来免费视频 | 国产xxx69麻豆国语对白 | 色欲人妻aaaaaaa无码 | 国产精品国产自线拍免费软件 | 天干天干啦夜天干天2017 | 性色av无码免费一区二区三区 | 久久精品国产99久久6动漫 | 国产性生大片免费观看性 | 中文字幕日韩精品一区二区三区 | 日韩亚洲欧美精品综合 | 天下第一社区视频www日本 | 国产熟妇另类久久久久 | 亚洲精品成a人在线观看 | 中文字幕无码人妻少妇免费 | 大肉大捧一进一出视频出来呀 | 久久午夜夜伦鲁鲁片无码免费 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 色婷婷综合中文久久一本 | 未满成年国产在线观看 | 国产莉萝无码av在线播放 | 国产口爆吞精在线视频 | 99久久久国产精品无码免费 | 欧美 日韩 亚洲 在线 | 性做久久久久久久免费看 | 国产激情无码一区二区app | 成人无码精品1区2区3区免费看 | 亚洲色欲久久久综合网东京热 | 性色av无码免费一区二区三区 | 久久亚洲精品成人无码 | 人人妻人人澡人人爽欧美一区 | 曰本女人与公拘交酡免费视频 | 国产婷婷色一区二区三区在线 | 人妻中文无码久热丝袜 | 日韩亚洲欧美中文高清在线 | 久激情内射婷内射蜜桃人妖 | 久久精品国产精品国产精品污 | 欧美老妇交乱视频在线观看 | 少妇高潮喷潮久久久影院 | 偷窥村妇洗澡毛毛多 | 国产偷自视频区视频 | 丰腴饱满的极品熟妇 | 熟妇人妻激情偷爽文 | 久久精品中文字幕大胸 | 极品嫩模高潮叫床 | 无码人妻丰满熟妇区五十路百度 | 午夜精品久久久久久久 | 最近免费中文字幕中文高清百度 | 亚洲啪av永久无码精品放毛片 | 亚洲成a人片在线观看无码3d | 日韩欧美成人免费观看 | 美女扒开屁股让男人桶 | 成人亚洲精品久久久久软件 | 无码人妻久久一区二区三区不卡 | 国产手机在线αⅴ片无码观看 | 国产农村妇女高潮大叫 | 国产成人精品一区二区在线小狼 | 熟女少妇在线视频播放 | 国产亚洲美女精品久久久2020 | 97人妻精品一区二区三区 | 国产综合久久久久鬼色 | 超碰97人人射妻 | 日韩av无码中文无码电影 | 国产精品欧美成人 | 十八禁视频网站在线观看 | 97久久国产亚洲精品超碰热 | 99久久无码一区人妻 | 欧美日韩在线亚洲综合国产人 | 亚洲人成网站色7799 | 两性色午夜视频免费播放 | 亚洲日本一区二区三区在线 | 骚片av蜜桃精品一区 | 性欧美牲交xxxxx视频 | 亚洲精品一区二区三区大桥未久 | 国产一区二区三区四区五区加勒比 | 丰满少妇高潮惨叫视频 | 日本免费一区二区三区最新 | 一本久久a久久精品vr综合 | 日韩精品无码免费一区二区三区 | 国产精品久久久久无码av色戒 | 国产极品美女高潮无套在线观看 | 精品夜夜澡人妻无码av蜜桃 | 人妻夜夜爽天天爽三区 | 国产精品久久久久久亚洲影视内衣 | 少妇愉情理伦片bd | 日本www一道久久久免费榴莲 | 奇米影视7777久久精品人人爽 | 久久无码中文字幕免费影院蜜桃 | 欧美激情内射喷水高潮 | 久久99精品国产.久久久久 | 亚洲日本一区二区三区在线 | 免费观看激色视频网站 | 精品人人妻人人澡人人爽人人 | 成人欧美一区二区三区黑人免费 | 日本xxxx色视频在线观看免费 | 国产精品久久久久无码av色戒 | 精品国产aⅴ无码一区二区 | 国产女主播喷水视频在线观看 | 亚洲国产精品毛片av不卡在线 | 国产深夜福利视频在线 | 蜜臀aⅴ国产精品久久久国产老师 | 色一情一乱一伦 | 四虎国产精品免费久久 | 国产成人无码av片在线观看不卡 | 成人试看120秒体验区 | 又大又硬又黄的免费视频 | 精品无码av一区二区三区 | 国产人妻精品午夜福利免费 | 夜夜夜高潮夜夜爽夜夜爰爰 | 精品 日韩 国产 欧美 视频 | 久久精品中文字幕大胸 | 国产综合色产在线精品 | 国产成人无码av一区二区 | 亚洲一区二区观看播放 | 爆乳一区二区三区无码 | 国产高潮视频在线观看 | 欧美老人巨大xxxx做受 | 亚洲欧洲无卡二区视頻 | 亚洲理论电影在线观看 | 国产乱人伦偷精品视频 | 欧美午夜特黄aaaaaa片 | 一本色道久久综合亚洲精品不卡 | 暴力强奷在线播放无码 | 久久人妻内射无码一区三区 | 老熟妇仑乱视频一区二区 | 国产精品高潮呻吟av久久4虎 | 中文精品无码中文字幕无码专区 | 少妇性l交大片欧洲热妇乱xxx | 精品乱码久久久久久久 | 国产亚洲tv在线观看 | 亚洲熟妇自偷自拍另类 | 日本大香伊一区二区三区 | 欧美freesex黑人又粗又大 | 少妇愉情理伦片bd | 亚洲熟妇色xxxxx欧美老妇y | 暴力强奷在线播放无码 | 人人妻人人澡人人爽欧美一区 | 国产片av国语在线观看 | 综合激情五月综合激情五月激情1 | 亚洲色大成网站www国产 | 亚洲精品鲁一鲁一区二区三区 | 少妇一晚三次一区二区三区 | 男人的天堂av网站 | 激情五月综合色婷婷一区二区 | 丁香啪啪综合成人亚洲 | 纯爱无遮挡h肉动漫在线播放 | 国产av一区二区三区最新精品 | 久久国内精品自在自线 | 无码人妻丰满熟妇区毛片18 | 福利一区二区三区视频在线观看 | 一区二区传媒有限公司 | 亚洲人成人无码网www国产 | 久久99久久99精品中文字幕 | 日韩少妇白浆无码系列 | 国产精品资源一区二区 | 色综合久久中文娱乐网 | 18禁黄网站男男禁片免费观看 | 特大黑人娇小亚洲女 | 国内精品久久久久久中文字幕 | 九月婷婷人人澡人人添人人爽 | 少妇无套内谢久久久久 | 无码人妻出轨黑人中文字幕 | 国产成人亚洲综合无码 | 久久久久久久人妻无码中文字幕爆 | 久久成人a毛片免费观看网站 | 自拍偷自拍亚洲精品10p | 色老头在线一区二区三区 | 久久精品人妻少妇一区二区三区 | a片免费视频在线观看 | 欧美日韩亚洲国产精品 | 婷婷综合久久中文字幕蜜桃三电影 | 荫蒂被男人添的好舒服爽免费视频 | 国产亚洲美女精品久久久2020 | 国产成人无码av一区二区 | 永久免费观看国产裸体美女 | 精品一区二区三区波多野结衣 | 国内精品久久毛片一区二区 | 亚洲成在人网站无码天堂 | 最新国产乱人伦偷精品免费网站 | 性生交大片免费看l | 好男人社区资源 | 最近中文2019字幕第二页 | 久久精品视频在线看15 | 国产精品无码mv在线观看 | 亚洲精品中文字幕久久久久 | 久久综合给合久久狠狠狠97色 | 久久综合激激的五月天 | 国产明星裸体无码xxxx视频 | 午夜精品一区二区三区的区别 | 午夜时刻免费入口 | 又粗又大又硬毛片免费看 | 国产精品爱久久久久久久 | 日本精品人妻无码免费大全 | 久久综合久久自在自线精品自 | 秋霞特色aa大片 | 人妻无码αv中文字幕久久琪琪布 | 成人毛片一区二区 | 无码乱肉视频免费大全合集 | 午夜肉伦伦影院 | 国产精品福利视频导航 | 全球成人中文在线 | 纯爱无遮挡h肉动漫在线播放 | 无码av中文字幕免费放 | 亚洲男人av天堂午夜在 | 无码人妻精品一区二区三区下载 | 亚洲男女内射在线播放 | 成人性做爰aaa片免费看 | 无码国内精品人妻少妇 | 成人欧美一区二区三区黑人免费 | 久青草影院在线观看国产 | 日日摸天天摸爽爽狠狠97 | 一本一道久久综合久久 | 狠狠色丁香久久婷婷综合五月 | 亚洲欧美精品aaaaaa片 | 久久99精品国产麻豆蜜芽 | 精品国产一区二区三区四区 | 少妇高潮一区二区三区99 | 青草青草久热国产精品 | 99久久精品午夜一区二区 | 欧美兽交xxxx×视频 | 中文字幕日韩精品一区二区三区 | 久久久中文字幕日本无吗 | 麻豆av传媒蜜桃天美传媒 | 天天燥日日燥 | 精品久久久久久人妻无码中文字幕 | 国产精品99爱免费视频 | 性欧美牲交xxxxx视频 | 亚洲日本va午夜在线电影 | 人妻有码中文字幕在线 | 97精品人妻一区二区三区香蕉 | 九月婷婷人人澡人人添人人爽 | 亚洲综合在线一区二区三区 | 精品午夜福利在线观看 | 久久久久se色偷偷亚洲精品av | 黑人粗大猛烈进出高潮视频 | 国产高清av在线播放 | 久久精品99久久香蕉国产色戒 | 一本色道久久综合亚洲精品不卡 | 婷婷综合久久中文字幕蜜桃三电影 | 高潮毛片无遮挡高清免费视频 | 撕开奶罩揉吮奶头视频 | 色综合天天综合狠狠爱 | 高清无码午夜福利视频 | 中文字幕中文有码在线 | 国产色视频一区二区三区 | 亚洲成av人综合在线观看 | 极品尤物被啪到呻吟喷水 | 国产精品内射视频免费 | 丝袜人妻一区二区三区 | 日本一区二区三区免费高清 | 无码国产激情在线观看 | 日本护士xxxxhd少妇 | 亚洲中文字幕无码中文字在线 | 中文亚洲成a人片在线观看 | 99国产欧美久久久精品 | 老熟女重囗味hdxx69 | 男女猛烈xx00免费视频试看 | 日韩欧美中文字幕在线三区 | 大肉大捧一进一出视频出来呀 | 久激情内射婷内射蜜桃人妖 | 牲交欧美兽交欧美 | 国产亚洲精品久久久久久 | 两性色午夜视频免费播放 | 人人妻人人澡人人爽欧美一区九九 | 久久久国产精品无码免费专区 | 色 综合 欧美 亚洲 国产 | 亚洲熟女一区二区三区 | 5858s亚洲色大成网站www | 在线播放免费人成毛片乱码 | 国产成人精品久久亚洲高清不卡 | 人妻少妇被猛烈进入中文字幕 | 精品国产国产综合精品 | 无码人妻丰满熟妇区毛片18 | 国产激情无码一区二区 | 国产精品久久久一区二区三区 | 一本大道伊人av久久综合 | 亚洲中文字幕va福利 | 久久久精品国产sm最大网站 | 亚洲国产精品久久人人爱 | 激情亚洲一区国产精品 | 97se亚洲精品一区 | av无码久久久久不卡免费网站 | 国产97人人超碰caoprom | 精品熟女少妇av免费观看 | 国产成人无码av一区二区 | 青青青爽视频在线观看 | 真人与拘做受免费视频一 | 国产精品丝袜黑色高跟鞋 | 久精品国产欧美亚洲色aⅴ大片 | 国产午夜亚洲精品不卡 | 麻豆av传媒蜜桃天美传媒 | 国产性生大片免费观看性 | 国产一精品一av一免费 | 无码免费一区二区三区 | 亚洲综合久久一区二区 | 亚洲区欧美区综合区自拍区 | 日韩亚洲欧美中文高清在线 | 人妻少妇被猛烈进入中文字幕 | 亚洲成a人片在线观看无码 | 亚洲国精产品一二二线 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 亚洲日韩av一区二区三区四区 | 日本丰满护士爆乳xxxx | 国产黑色丝袜在线播放 | 日本爽爽爽爽爽爽在线观看免 | 国产乱人伦偷精品视频 | 欧洲vodafone精品性 | 国产真实伦对白全集 | 少妇的肉体aa片免费 | 在线欧美精品一区二区三区 | 精品成在人线av无码免费看 | 中文字幕色婷婷在线视频 | 亚洲自偷自偷在线制服 | 久久久久久a亚洲欧洲av冫 | 无码精品人妻一区二区三区av | 久久99精品久久久久久动态图 | 无码精品人妻一区二区三区av | 日韩欧美成人免费观看 | 极品嫩模高潮叫床 | 国产精品手机免费 | 欧美精品免费观看二区 | 精品无码一区二区三区的天堂 | 国产亚洲精品久久久久久国模美 | 国产农村乱对白刺激视频 | 中文字幕av日韩精品一区二区 | 亚洲七七久久桃花影院 | 亚洲精品欧美二区三区中文字幕 | 麻豆国产丝袜白领秘书在线观看 | 97精品人妻一区二区三区香蕉 | 性色欲网站人妻丰满中文久久不卡 | 乱人伦人妻中文字幕无码久久网 | 久久久久免费看成人影片 | 亚洲欧美精品aaaaaa片 | 中文字幕无码热在线视频 | 亚洲精品一区国产 | 又大又紧又粉嫩18p少妇 | 人妻无码αv中文字幕久久琪琪布 | 少妇无套内谢久久久久 | 国产人妻大战黑人第1集 | 久久精品国产日本波多野结衣 | 成 人影片 免费观看 | 欧美日韩人成综合在线播放 | 日韩视频 中文字幕 视频一区 | √天堂资源地址中文在线 | 国产乡下妇女做爰 |