Introduction - If you have any usage issues, please Google them yourself
Java analog Yangcheng card code
*/
public static void main(String[] args) {
for(int i=0;i<args.length;i++){
System.out.println("args["+i+"]="+args[i]);
}
BusCard test;
if ("1".equals(args[0]))
test = new BusCard(true);
else
test = new BusCard(false);
if (args.length > 1)
test.activeCard(Integer.parseInt(args[1]));
else