class StackValue { StackValue(double x) { d = x; } StackValue(String x) { id = x; } double d; String id; }