mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
154 B
Plaintext
13 lines
154 B
Plaintext
public class Inheritance {}
|
|
|
|
class Base {
|
|
void foo(){
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
class Child extends Base {
|
|
void bar() {
|
|
foo();
|
|
}
|
|
} |