mirror of
https://github.com/ASDjonok/OOP_IO-2x_2023.git
synced 2025-12-14 10:04:14 +02:00
14 lines
171 B
Java
14 lines
171 B
Java
|
|
package test;
|
||
|
|
|
||
|
|
public class A {
|
||
|
|
/*private*/ int f/* = 3*/;
|
||
|
|
|
||
|
|
public int getF() {
|
||
|
|
return f;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setF(int f) {
|
||
|
|
this.f = f;
|
||
|
|
}
|
||
|
|
}
|