Hey there! Prepping for the Java exam at VU Amsterdam? I've got you covered! I've summarized everything from this year's completely overhauled course, capturing all the crucial info from the slides. Whether you're refreshing old concepts or grappling with the new stuff, this guide is your ticket t...
, 1 Modifiers
In Java, modifiers are keywords added to class, method, or variable definitions
to change their meanings. They play a pivotal role in adjusting the behaviour
and visibility of various elements like fields, classes, methods, and variables.
Broadly, modifiers can be categorised into two groups:
• Access Modifiers: Such as public and private, which control the
visibility of classes, methods, and variables.
• Non-Access Modifiers: Like final and static, which provide other
functionalities.
When a variable is designated as final, it means that once a value is
assigned to it, it cannot be altered. This immutability ensures data consis-
tency and integrity. It’s essential to assign a value to a final variable either
directly or via the constructor.
1.1 Illustrative Example:
For instance, consider a class Individual where the yearOfBirth is marked
as final. Once an Individual object is created with a specific birth year, it
cannot be changed.
1 class Individual {
2 final int yearOfBirth ;
3 Individual ( int yearOfBirth ) {
4 this . yearOfBirth = yearOfBirth ;
5 }
6 }
Listing 1: Final variable example in Java
In the advanced programming landscape, terms like public, static, and
final hold special significance. Specifically:
• public ensures universal accessibility.
• static indicates the element belongs to the class rather than any in-
stance.
• final denotes immutability.
4
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 cedm9. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €15,39. Je zit daarna nergens aan vast.