Extending a class Flashcards

1
Q

How you can extend a class ?

A

you can extend a class using the “extends” keyword after the child class name

EXAMPLE :

class Animal { }
class Lion extends Animal { }

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Give an important thing to remember about the accessibility of public members of a class !

A

In Java, if you have a public member (field or method) in a public class, it can be accessed from another public class within the same package without explicitly importing the class that contains the member.

The same principle applies for protected and default access members.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly