Send a link to your students to track their progress
10 Terms
1
New cards
packages
acts as a file folder for classes and stores many classes inside of itself
2
New cards
libraries
place to get packages from
3
New cards
constructor
a special method specified in the class which sets up the object as we want it; has the same name as the class
4
New cards
parameter
putting information of the requested types into the paratheses
5
New cards
actual parameters
the values passed into the parameters
6
New cards
call by value
the constructor gets a copy of that value not the actual value itself, or a copy of the reference to that value if it is reference data (e.g. a String)