有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java找不到数组

我在第110行得到错误“找不到任何命名坐标”:

 System.out.println(coordinates[k][l]); 

尝试运行此操作时:

import TUIO.*;
TuioProcessing tuioClient;

int cols = 15, rows = 10;
boolean[][] states = new boolean[cols][rows];
int videoScale = 50;

// these are some helper variables which are used
// to create scalable graphical feedback
int x, y, i, j;
float cursor_size = 15;
float object_size = 60;
float table_size = 760;
float scale_factor = 1;
PFont font;

boolean verbose = false; // print console debug messages
boolean callback = true; // updates only after callbacks



void setup(){
  size(500,500);
noCursor();

  noStroke();
  fill(0);

  // periodic updates
  if (!callback) {
    frameRate(60); //<>//
    loop();
  } else noLoop(); // or callback updates 

  font = createFont("Arial", 18);
  scale_factor = height/table_size;

  // finally we create an instance of the TuioProcessing client
  // since we add "this" class as an argument the TuioProcessing class expects
  // an implementation of the TUIO callback methods in this class (see below)
  tuioClient  = new TuioProcessing(this);

}
void draw(){
  // Begin loop for columns
  for (int k = 0; k < cols; k++) {
    // Begin loop for rows
    for (int l = 0; l < rows; l++) {

      // Scaling up to draw a rectangle at (x,y)
      int x = k*videoScale;
      int y = l*videoScale;

      fill(255);
      stroke(0);

      String[][] coordinates = new String[cols][rows]; 

for (int i = 0; i < cols; i++) {
  for (int j = 0; j < rows; j++) { 

 coordinates[i][j] = String.valueOf((char)(i+65)) + String.valueOf(j).toUpperCase();

  }
}

      //check if coordinates are within a box (these are mouse x,y but could be fiducial x,y)
      //simply look for bounds (left,right,top,bottom)
      if( (mouseX >= x &&  mouseX <= x + videoScale) && //check horzontal
          (mouseY >= y &&  mouseY <= y + videoScale)){
        //coordinates are within a box, do something about it
       System.out.println(coordinates[k][l]); 
        //you can keep track of the boxes states (contains x,y or not) 
        states[k][l] = true;

        if(mousePressed) println(k+"/"+l);

      }else{

        states[k][l] = false;

      }


      rect(x,y,videoScale,videoScale); 
    }
  }

   textFont(font,18*scale_factor);
  float obj_size = object_size*scale_factor; 
  float cur_size = cursor_size*scale_factor; 

  ArrayList<TuioObject> tuioObjectList = tuioClient.getTuioObjectList();
  for (int i=0;i<tuioObjectList.size();i++) {
     TuioObject tobj= tuioObjectList.get(i);
     stroke(0);
     fill(0,0,0);
     pushMatrix();
     translate(tobj.getScreenX(width),tobj.getScreenY(height));
     rotate(tobj.getAngle());
     rect(-obj_size/2,-obj_size/2,obj_size,obj_size);
     popMatrix();
     fill(255);
     text(""+tobj.getSymbolID(), tobj.getScreenX(width), tobj.getScreenY(height));
     System.out.println(tobj.getSymbolID ()+ " " + tobj.getX());

     if( ( tobj.getX()>= x &&  tobj.getX() <= x + videoScale) && //check horzontal
          (tobj.getY() >= y &&  tobj.getY() <= y + videoScale)){
        //coordinates are within a box, do something about it
       System.out.println(coordinates[k][l]); 


   }

}
}
// --------------------------------------------------------------
// these callback methods are called whenever a TUIO event occurs
// there are three callbacks for add/set/del events for each object/cursor/blob type
// the final refresh callback marks the end of each TUIO frame
// called when an object is added to the scene

/* void addTuioObject(TuioObject tobj) {
  if (verbose) println("add obj "+tobj.getSymbolID()+" ("+tobj.getSessionID()+") "+tobj.getX()+" "+tobj.getY()+" "+tobj.getAngle());
}

 // called when an object is moved
void updateTuioObject (TuioObject tobj) {
  if (verbose) println("set obj "+tobj.getSymbolID()+" ("+tobj.getSessionID()+") "+tobj.getX()+" "+tobj.getY());
}

// called when an object is removed from the scene
void removeTuioObject(TuioObject tobj) {
  if (verbose) println("del obj "+tobj.getSymbolID()+" ("+tobj.getSessionID()+")");
}
*/

// --------------------------------------------------------------
// called at the end of each TUIO frame
void refresh(TuioTime frameTime) {
  if (verbose) println("frame #"+frameTime.getFrameID()+" ("+frameTime.getTotalMilliseconds()+")");
  if (callback) redraw();
}

我不明白为什么,因为我宣布它是第57行:

String[][] coordinates = new String[cols][rows]; 

有人知道为什么吗?我是否应该以不同的方式声明它,以使它在任何地方都可以访问

谢谢你的帮助


共 (1) 个答案

  1. # 1 楼答案

    您正在第一个嵌套for循环中声明coordinates变量,因此它只在该循环执行期间在作用域中。每次循环迭代时都会重新创建它

    但你要在循环结束后访问这个变量。此时,coordinates变量超出范围,因此会出现该错误

    您必须重构代码,以便在访问它时coordinates在范围内

    换句话说,这是行不通的:

    for(int i = 0; i < 10; i++){
       String test = "xyz";
    }
    
    println(test);
    

    因为test变量只在循环内部可见,所以不能在循环外部使用它。相反,你必须这样做:

    for(int i = 0; i < 10; i++){
       String test = "xyz";
       println(test);
    }
    

    或者这个:

    String test = "abc";
    for(int i = 0; i < 10; i++){
       test = "xyz";
    }
    
    println(test);
    

    采取哪种方法取决于您希望代码做什么