Neu
parent
6a99534f1d
commit
1adfc9d8d0
|
@ -1,4 +1,4 @@
|
|||
package Generics;
|
||||
package indexverwaltung;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package postfixNotation;
|
||||
|
||||
public class Item {
|
||||
// Konstruktor
|
||||
Item(char z, int w) {
|
||||
zeichen = z;
|
||||
prio = w;
|
||||
}
|
||||
char zeichen;
|
||||
int prio;
|
||||
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
package postfixNotation;
|
Loading…
Reference in New Issue