Skip to content

Instantly share code, notes, and snippets.

@alexjosesilva
Created February 22, 2024 20:19
Show Gist options
  • Save alexjosesilva/d8f4f406da29d8c6ae00c541de0900b9 to your computer and use it in GitHub Desktop.
Save alexjosesilva/d8f4f406da29d8c6ae00c541de0900b9 to your computer and use it in GitHub Desktop.
Encapsulamento
public class EncapsulationExample {
private int data;
public int getData() {
return data;
}
public void setData(int data) {
this.data = data;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment