logo

Crowdly

Browser

Add to Chrome

Betrachte folgendes Codestück: public class Konto { private double kontos...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Betrachte folgendes Codestück:

public class Konto {

private double kontostand = 0;

public synchronized void einzahlen(double betrag) {

this.kontostand += betrag;

}

public void abheben(double betrag) {

this.kontostand -= betrag;

}

public double getKontostand() {

return this.kontostand;

}

}

Welche der folgenden Aussagen dazu sind wahr oder falsch?

More questions like this

Want instant access to all verified answers on elearning.tgm.ac.at?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome