Skip to content

Instantly share code, notes, and snippets.

@nherbaut
Created September 28, 2023 11:59
Show Gist options
  • Select an option

  • Save nherbaut/fdb9ddd5d9358d028804d70156cba760 to your computer and use it in GitHub Desktop.

Select an option

Save nherbaut/fdb9ddd5d9358d028804d70156cba760 to your computer and use it in GitHub Desktop.
L2.2.14 Exo classes type et for

Quelles sont les variables d'instances (= attributs) de cette classe?

public class Thing {
private int a;
public Thing(int x) {
a = x;
}
public int geta() {
return a;
}
public void print() {
int b = 4;System.out.println(geta() + " " + b);
}
}
@nherbaut
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment