1.5_Ordering Elements in a Class Flashcards

1
Q

Which acronym helps us to remember ordering of elements in a Class?

A

Think of the acronym PIC (picture)
o Packages
o Import
o Class ( Field & Methods )

Package declaration -> First line in the file
import statements -> Immediately after the package (if present)
class declaration -> Immediately after the import (if any)
field declaration -> Any top-level element in a class
Method declarations -> Any top-level element in a class
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which of those elements
(package | import | class [Fields & Methods])
are mandatory?

A

Class definition is the only one mandatory

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