-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathConsoleProgram.java
More file actions
226 lines (186 loc) · 5.31 KB
/
ConsoleProgram.java
File metadata and controls
226 lines (186 loc) · 5.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
import java.util.*;
public class ConsoleProgram{
private Scanner scanner;
public static void main(String[] args){
// Assume the class name is passed in as the first argument.
if(args.length == 0){
System.out.println("Please provide the name of the main class as an argument.");
return;
}
String mainClassName = args[0];
try{
Class mainClass = Class.forName(mainClassName);
Object obj = mainClass.newInstance();
ConsoleProgram program = (ConsoleProgram)obj;
program.run();
} catch (IllegalAccessException ex) {
System.out.println("Error in program. Make sure you extend ConsoleProgram");
} catch (InstantiationException ex) {
System.out.println("Error in program. Make sure you extend ConsoleProgram");
} catch (ClassNotFoundException ex) {
System.out.println("Error in program. Make sure you extend ConsoleProgram");
}
}
public void run(){
/* Overridden by subclass */
}
public ConsoleProgram(){
scanner = new Scanner(System.in);
}
public String readLine(String prompt){
System.out.print(prompt);
return scanner.nextLine();
}
public boolean readBoolean(String prompt){
while(true){
String input = readLine(prompt);
if(input.equalsIgnoreCase("true")){
return true;
}
if(input.equalsIgnoreCase("false")){
return false;
}
}
}
public double readDouble(String prompt){
while(true){
String input = readLine(prompt);
try {
double n = Double.valueOf(input).doubleValue();
return n;
} catch (NumberFormatException e){
}
}
}
// Allow the user to get an integer.
public int readInt(String prompt){
while(true){
String input = readLine(prompt);
try {
int n = Integer.parseInt(input);
return n;
} catch (NumberFormatException e){
}
}
}
/**
* Allows us to use a shorthand version for System.out.println()
*/
public void println() {
System.out.println();
}
/**
* Allows us to use a shorthand version for System.out.println(String s)
*/
public void println(String s) {
System.out.println(s);
}
/**
* Allows us to use a shorthand version for System.out.println(boolean x)
*/
public void println(boolean x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(char x)
*/
public void println(char x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(char[] x)
*/
public void println(char[] x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(int x)
*/
public void println(int x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(long x)
*/
public void println(long x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(float x)
*/
public void println(float x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(double x)
*/
public void println(double x) {
System.out.println(x);
}
/**
* Allows us to use a shorthand version for System.out.println(Object o)
*/
public void println(Object o) {
System.out.println(o);
}
/**
* Allows us to use a shorthand version for System.out.print()
*/
public void print() {
System.out.print("");
}
/**
* Allows us to use a shorthand version for System.out.print(String s)
*/
public void print(String s) {
System.out.print(s);
}
/**
* Allows us to use a shorthand version for System.out.print(boolean x)
*/
public void print(boolean x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(char x)
*/
public void print(char x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(char[] x)
*/
public void print(char[] x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(int x)
*/
public void print(int x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(long x)
*/
public void print(long x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(float x)
*/
public void print(float x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(double x)
*/
public void print(double x) {
System.out.print(x);
}
/**
* Allows us to use a shorthand version for System.out.print(Object o)
*/
public void print(Object o) {
System.out.print(o);
}
}