2

当我调用我的 TruthTable 类并使用输入填充它时,当我尝试设置 AND 门的输入时,我无法访问数组中的各个插槽?

threeAndGates.java - 发生错误的类

import java.util.Scanner;

public class threeAndGates {

   public static void main(String[] args){
      LogicGate and1 = new LogicGate(LogicGate.AND);
      LogicGate and2 = new LogicGate(LogicGate.AND);
      LogicGate and3 = new LogicGate(LogicGate.AND);

      System.out.print("What is the number of Inputs? ");
      Scanner scan = new Scanner(System.in);
      int numOfInputs = scan.nextInt();

      System.out.print("What is the number of Outputs? ");
      int numOfOutputs = scan.nextInt();

      TruthTable Table1 = new TruthTable(numOfInputs,numOfOutputs);
      Table1.PopulateTruthTable();

      //below is where it is giving me "the type of the expression must be an array type but it resolves to TruthTable"
      for(int r = 0; r<(Math.pow(2, numOfInputs)) ; r++ ){
         and1.setInput1(Table1[r][0]);
         and1.setInput2(Table1[r][1]);
         and2.setInput1(Truth1[r][2]);
         and2.setInput2(Truth1[r][3]);
         and3.setInput1(and1.getOutput());
         and3.setInput2(and2.getOutput());

         Table1[r][numOfInputs + numOfOutputs] = and3.getOutput();
      }

      Table1.printTruthTable();
   }
}

TruthTable.java

public class TruthTable {
   private int numOfInputs;
   private boolean[][] table;

   public TruthTable(int inputs, int outputs){
      this.numOfInputs = inputs;
      int rows = (int) Math.pow(2,inputs);
      int columns =  inputs + outputs;
      table = new boolean[rows][columns];
   }

   public void printTruthTable(){
      for(int r = 0 ; r < table.length ; r++){
         for(int c = 0; c < table[r].length; c++)
            System.out.printf("%-5b ", table[r][c]);
         System.out.println();
      }
   }

   public String toString(){
      String outStr = new String();
      for(int r = 0; r < table.length; r++){
         for(int c = 0; c < table[r].length; c++)
            outStr += String.format("%-5b ", table[r][c]);
         outStr += '\n';
      }

      return outStr;
   }

   public boolean[][] PopulateTruthTable(){
      String s; 
      String r ="";
      int[] Line = new int[numOfInputs];
      boolean bit;

      for ( int i= 0; i < Math.pow(2,numOfInputs) ; i++){
         int x = numOfInputs - Integer.toBinaryString(i).length();
         for(int j = 0; j<x ; j++)
            r += "0"; 
         s = r + Integer.toBinaryString(i);
         for(int k=0; k<s.length() ;k++){
           Line[k] = s.charAt(k)-48;
         }  

         for(int m=0 ; m<numOfInputs ; m++){    
           if(Line[m]==1) bit = true;
           else bit = false; 
           table[i][m] = bit;
         }
         r="";
      } 
      return table;
   }
}
4

3 回答 3

2

您的 TruthTable 类不是数组。它包含一个数组。您可以在 TruthTable 类中添加一个 get 和 set 方法:

public boolean getValueAt(int x, int y) {
   return this.table[x][y];
}

public void setValueAt(int x, int y, boolean value) {
   this.table[x][y] = value;
}

并使用它来处理 TruthTable 值。


这与您的问题无关,但是在您的类中命名变量时,一般做法是使用小写。例如,您有:

TruthTable Table1 = new TruthTable(numOfInputs,numOfOutputs);

会更好

TruthTable table1 = new TruthTable(numOfInputs,numOfOutputs);

最好是

TruthTable truthTable = new TruthTable(numOfInputs,numOfOutputs);

你对事物的命名越好、越一致,就越容易阅读。

于 2012-06-29T19:24:46.957 回答
1

您的 TruthTable 类不是多维数组;它有一个多维数组字段。因此,您不能使用以下语法:

tableInstance[x][y]

如果你 TruthTable 的表字段是公开的,或者更好的是,它有一个吸气剂,你可以做这样的事情来代替......

tableInstance.getTable()[x][y]

某些语言(如 C#)还支持运算符重载,这将允许您定义使用[]索引运算符(或其他类似+,/等)的行为。这将允许您使索引工作。不幸的是,Java 没有这个特性。

于 2012-06-29T19:25:06.020 回答
1

这更像是评论而不是答案,但我需要更多空间。

如果您的代码稍后给您带来问题,我可以提出建议吗?将 populateTruthTable 分解为 2 或 3 个方法,将每个循环放在它自己命名良好的方法中,因为每个方法都应该只做一件事

此外,您可能不应该直接从主类访问数组,而是将主类“for”循环中的所有代码放入 TruthTable 类中的方法并从 main 调用该方法,因为您应该告诉对象要做什么做而不是询问它的数据。

我并不是要说你做错了什么,你显然做得很好,但随着你的进步,学习更多的编码技巧/练习总是好的,你似乎处于这些水平会派上用场的。

于 2012-06-29T19:51:07.380 回答