Skip to content

Instantly share code, notes, and snippets.

View hirayGui's full-sized avatar
🎄

Guilherme Hiray hirayGui

🎄
View GitHub Profile
@hirayGui
hirayGui / Conta.java
Created October 16, 2018 14:00 — forked from danielmoraisifsp/Conta.java
Exemplo: Classe conta
package banco;
public abstract class Conta {
private float saldo;
protected void setSaldo(float valor) {
this.saldo = valor;
}
public float getSaldo() {