我在 Java 中定义一个不使用类对象的函数。它只是用于将用户输入的字符串转换为整数。无论我在哪里放置我得到和错误的功能。我想知道我应该把它放在哪里。这里是
//Basically, when the user enters character C, the program stores
// it as integer 0 and so on.
public int suit2Num(String t){
int n=0;
char s= t.charAt(0);
switch(s){
case 'C' :{ n=0; break;}
case 'D': {n=1;break;}
case 'H':{ n=2;break;}
case 'S': {n=3;break;}
default: {System.out.println(" Invalid suit letter; type the correct one. ");
break;}
}
return n;
}