1 / 21

תוכנה 1 ג'אווה

תוכנה 1 ג'אווה. תרגול י"ג – סיכום הסיכומים ליאור שפירא ומתי שמרת. קצת על מנשקים. מנשק יכול להרחיב יותר ממנשק אחד שירותים במנשק הם תמיד מופשטים וציבוריים public interface MyInterface { public abstract int foo1( int i ); int foo2( int i ); } The “type” of foo1 and foo2 is the same.

agnes
Télécharger la présentation

תוכנה 1 ג'אווה

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. תוכנה 1ג'אווה תרגול י"ג – סיכום הסיכומים ליאור שפירא ומתי שמרת

  2. קצת על מנשקים • מנשק יכול להרחיב יותר ממנשק אחד • שירותים במנשק הם תמיד מופשטים וציבוריים public interfaceMyInterface {public abstract int foo1(inti);int foo2(inti); } The “type” of foo1 and foo2 is the same.

  3. מנשקים public interfaceFoo { public void bar() throws Exception; } public classFooImpl implements Foo { public void bar() { System.out.println("No exception is thrown"); } public static void main(String args[]) { Foofoo = newFooImpl(); foo.bar(); } } Does the code compile? If no, why? Does the code throw a runtime exception? If yes, why? If no, what is the output? Compilation Error: "Unhandled exception type Exception"

  4. מנשקים public interfaceFoo { public void bar() throws Exception; } public classFooImpl implementsFoo { public void bar() { System.out.println("No exception is thrown"); } public static void main(String args[]) { FooImplfoo = new FooImpl(); foo.bar(); } } Does the code compile? If no, why? Does the code throw a runtime exception? If yes, why? If no, what is the output? Output: No exception is thrown

  5. מנשקים וירושה Consider the following class hierarchy: Interface Animal {…} class Dog implements Animal{…} class Poodle extends Dog {…} class Labrador extends Dog {…} Which of the following lines (if any) will not compile? Poodle poodle = new Poodle(); Animal animal = (Animal) poodle; Dog dog = new Labrador(); animal = dog; poodle = dog; Animal Dog Poodle Labrador • poodle = (Poodle) dog; • No compilation error • Runtime Exception • Compilation Error • Type mismatch: cannot convert from Dog to Poodle • Labrador labrador = (Labrador) animal; • No compilation error • No Runtime Exception

  6. מנשקים וירושה class A { public void print() { System.out.println("A"); } } class B extends A implements C { } interface C { void print(); } No compilation errors Is there an error? public by default

  7. מנשקים וירושה class A { void print() { System.out.println("A"); } } class B extends A implements C { } interface C { void print(); } Is there an error? Compilation error: The inherited package method A.print() cannot hide the public abstract method in C

  8. Method Overloading & Overriding public class A {       public float foo(float a, float b) throws IOException{ } } public class B extends A { … } Which of the following methods can be defined in B: 1.float foo(float a, float b){…} 2.public int foo(int a, int b) throws Exception{…} 3.public float foo(float a, float b) throws Exception{…} 4.public float foo(float p, float q) {…} Answer: 2 and 4

  9. public class A { public void print() { System.out.println("A"); } } public class B extends A { public void print(){ System.out.println("B"); } } public class C { public static void main(String args[]){ B b = new B(); A a = b; b.print(); a.print(); } } Method Overriding Casting is unneeded Does the code compile? If no, why? Does the code throw a runtime exception? If yes, why? If no, what is the output? The output is: B B

  10. public class A { public void print() { System.out.println("A"); } } public class B extends A { protected void print() { System.out.println("B"); } } public class C { public static void main(String[] args) { B b = new B(); b.print(); } } Method Overriding & Visibility Does the code compile? If no, why? Does the code throw a runtime exception? If yes, why? If no, what is the output? Compilation error: "Cannot reduce the visibility of the inherited method"

  11. public class A { protected void print() { System.out.println("A"); } } public class B extends A { public void print() { System.out.println("B"); } } public class C { public static void main(String[] args) { B b = new B(); b.print(); } } Method Overriding & Visibility What is the output? The output is: B

  12. public class A { public void foo() { System.out.println("A.foo()"); } public void bar() { System.out.println("A.bar()"); foo(); } } Inheritance public class B extends A { public void foo() { System.out.println("B.foo()"); } public static void main(String[] args) { A a = new B(); a.bar(); } } Does the code compile? If no, why? Does the code throw a runtime exception? If yes, why? If no, what is the output? The output is: A.bar() B.foo()

  13. public class A { private voidfoo() { System.out.println("A.foo()"); } public void bar() { System.out.println("A.bar()"); foo(); } } Inheritance public class B extends A { public voidfoo() { System.out.println("B.foo()"); } public static void main(String[] args) { A a = new B(); a.bar(); } } The output is: A.bar() A.foo() Does the code compile? If no, why? Does the code throw a runtime exception? If yes, why? If no, what is the output?

  14. Inheritance public class A { public void foo() {…} } public class B extends A { public void foo() {…} } How can you invoke the foo method of A within B? Answer: Use super.foo()

  15. Inheritance public class A { public void foo() {…} } public class B extends A { public void foo() {…} } public class C extends B { public void foo() {…} } How can you invoke the foo method of A within C? Answer: Not possible (super.super.foo() is illegal)

  16. public class A { String bar = "A.bar"; A() { foo(); } public voidfoo() { System.out.println("A.foo(): bar = " + bar); } } public class B extends A { String bar = "B.bar"; B() { foo(); } public voidfoo() { System.out.println("B.foo(): bar = " + bar); } } public class D { public static void main(String[] args) { A a = new B(); System.out.println(“a.bar = “ + a.bar); a.foo(); } } Inheritance & Constructors What is the output? The output is: B.foo(): bar = null B.foo(): bar = B.bar a.bar = A.bar B.foo(): bar = B.bar

  17. Inheritance & Constructors public class A { protected B b = new B(); public A() { System.out.println("in A: no args."); } public A(String s) { System.out.println("in A: s = " + s); } } public class B { public B() { System.out.println("in B: no args."); } } public class C extends A { protected B b; public C() { System.out.println("in C: no args."); } public C(String s) { System.out.println("in C: s = " + s); } } public class D { public static void main(String args[]) { C c = new C(); A a = new C(); } } What is the output? The output is: in B: no args. in A: no args. in C: no args. in B: no args. in A: no args. in C: no args.

  18. Inheritance & Constructors public class A { protected B b = new B(); public A() { System.out.println("in A: no args."); } public A(String s) { System.out.println("in A: s = " + s); } } public class B { public B() { System.out.println("in B: no args."); } } public class C extends A { protected B b; public C() { System.out.println("in C: no args."); } public C(String s) { System.out.println("in C: s = " + s); } } public class D { public static void main(String args[]) { C c = new C("c"); A a = new C("a"); } } What is the output? The output is: in B: no args. in A: no args. in C: s = c in B: no args. in A: no args. in C: s = a

  19. Inheritance & Constructors public class A { protected B b = new B(); public A() { System.out.println("in A: no args."); } public A(String s) { System.out.println("in A: s = " + s); } } public class B { public B() { System.out.println("in B: no args."); } } public class C extends A { protected B b; public C() { System.out.println("in C: no args."); } public C(String s) { System.out.println("in C: s = " + s); } } public class D { public static void main(String args[]) { C c = new C("c"); A a = new C("a"); } } Compilation error without this line What will happen if we remove this line?

  20. Inheritance & Constructors public class A { String bar = "A.bar"; } public class B extends A { String bar = "B.bar"; B() { foo(); } public void foo() { System.out.println("B.foo(): bar = " + bar); } public static void main(String[] args) { A a = new B(); System.out.println(a.bar); a.foo(); } } Will this compile? Will there be a RTE? What is the result? Compilation Error: "The method foo is undefined for the type A"

  21. בחינה באופק! • הבחינה ב-15 בפברואר ב-2 בצהריים • עצות לקראת המבחן: • תתכוננו • תשתו הרבה מים • להשתדל להימנע מתשובות כאלו בהצלחה!

More Related