如果我想存储3个数字,比如在byte类型的变量中存储1,2和3,那么关于如何从测试类访问它的任何建议?
我试图从测试类访问它,它将不接受那些3的任何值
这是我的代码:

public class Type {

private byte[] dogType = {1 , 2 , 3};

public void setType(byte[] TypeIn ) {
        dogType = TypeIn;
    }

最佳答案

为此,最好使用enum

public enum DogType {
  HUSKY, BULLDOG, POODLE
}

.....
public class Test {
   public static void main(String[] args) {
      DogType dogType = HUSKY;

07-24 09:19