Summary Absolute Java - Walter Savitch - CHAPTER 4 - DEFINING CLASSES I
60 keer bekeken 0 keer verkocht
Vak
CS105 (CS)
Instelling
International University Of Sarajevo
Boek
Absolute Java, Global Edition
Complete coverage of CHAPTER 4 (Defining Classes I) in Absolute Java textbook by Walter Savitch. The document contains complete explanation of all content and key words with given examples. The notes are written carefully so that as you read the document you simultaneously learn all the concepts in...
Module opdracht Ontwerpen en Programmeren behaald met 7 inclusief beoordeling van de docent
Alles voor dit studieboek
(10)
Geschreven voor
International University Of Sarajevo
CS105 (CS)
Alle documenten voor dit vak (1)
Verkoper
Volgen
SEStudent
Voorbeeld van de inhoud
22/08, 16:31
CHAPTER 4: DEFINING CLASSES I
Theory part
Object is a value of class type and is often
referred to as instance of the class. An object
differs from values of primitive types in a way that
it has both data and methods (actions).
Each object can have different data, but all
objects of a class have the same types of data
and all objects in a class have the same methods.
Each object has pieces of data that are instance
variables and the methods. Both data items and
methods are sometimes called members of the
object. The data items are also called fields.
,22/08, 16:31
Objects are named by variables of class types.
DateFirstTry date1, date2
If the variables date1 and date2 are declared as
variables of class type (They belong to the class
DateFirstTry) then in line:
date1 = new DateFirstTry ();
The variable date1 is a name of the object that is
created in the expression. To obtain an object you
must use the new operator.
The declaration of a class variable and the
creation of the object are more typically
combined into one statement:
DateFirstTry date1 = new DateFirstTry ();
Instance variables can be named by giving the
object name followed by a dot and the name of
, 22/08, 16:31
the instance variable
date1.month
date1.day
date1.year
The statement date1.month = "Hello friend" in the
main (tester) class assigns the string "Hello
friend" to the instance variable month. Instance
variables can be used just like any other variable.
The instance variable date1.month can be used
just like any other variable of type String.
Practise part
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper SEStudent. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €3,42. Je zit daarna nergens aan vast.