Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
상속1
//Title of this code //'main' method must be in a class 'Rextester'. //Compiler version 1.8.0_45 import java.util.*; import java.lang.*; class Rextester { public static void main(String args[]) { Animal ani = new Animal(); ani.Cry(); System.out.println("Hello, World!"); } } class Animal{ public void Cry(){ System.out.println("Grr~"); } } class Dog extends Animal{ @Override public void Cry(){ System.out.println("wal~wal~"); } }
run
|
edit
|
history
|
help
0
js
1
LeetCode 121 - Best time to buy and sell stock - O(n) solution
Array - char
Rextester.java
2D List Iterator
Find Case Combinations of a String
Instance fields are no overridden
4b
t