mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
21 lines
554 B
Java
21 lines
554 B
Java
|
LinkedList<MyType> myList = new LinkedList<MyType>();
|
||
|
List<MyType> myList = new LinkedList<MyType>();
|
||
|
import java.util.List;
|
||
|
|
||
|
Animal a = new Animal();
|
||
|
// The compiler can resolve this method call statically:
|
||
|
a.Roar();
|
||
|
|
||
|
public void MakeSomeNoise(object a) {
|
||
|
// Things happen...
|
||
|
// You won't know if this works until runtime:
|
||
|
((Animal) a).Roar();
|
||
|
}
|
||
|
|
||
|
for (Map.Entry<Person, TelephoneNumber>
|
||
|
entry : phonebook.entrySet()) {
|
||
|
Person k = entry.getKey();
|
||
|
TelephoneNumber v = entry.getValue();
|
||
|
System.out.println(k + " " + v);
|
||
|
}
|