Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public class fraktal extends JFrame   {

 public fraktal (String args[]) {
  calc = new Calculator(632,453,raster, this);    
  }
 calc.start();


 } 
 public static void main(String args[]) {
  new fraktal(args);
 }

}

class Calculator extends Thread {
 public Calculator(int sx, int sy, WritableRaster r, JFrame p) {

 public void run() {  
  int[] dataArray = new int[3600000];
  raster.getPixels(0,0,32,53,dataArray);  
  //System.out.println(Arrays.toString(dataArray));    
 } 
}

I wanna use "dataArray" , a int array in Main, how Can I get it? Thanks indeed!

share|improve this question
Please use code formatting. – Alex Nikolaenkov Nov 22 '10 at 7:44
You are using that array already, what is the problem with your code? – Mohamed Saligh Nov 22 '10 at 7:46
I want to use dataArray in Main fuction – Josh Morrison Nov 22 '10 at 7:52

2 Answers

up vote 1 down vote accepted

Here in your code there are many mistakes, if you just want to use dataArray in Main method here is snippet. try correcting mistakes and also check the link given

import java.awt.*;
import java.util.*;
import javax.swing.*;
import java.awt.image.WritableRaster;


public class fraktal extends JFrame   {
 int[] dataArray;
 public fraktal (String args[]) {
  Calculator calc = new Calculator(dataArray);    
  calc.start();
  }




 public static void main(String args[]) {
 fraktal ob =  new fraktal(args);
 System.out.println(ob.dataArray);
 }

}

class Calculator extends Thread {
 int[] dataArray;

 public Calculator(int[] dataArray) {
   this.dataArray = dataArray;
 }
 public void run() {    
  System.out.println(Arrays.toString(dataArray));    
 } 
}   

Java Variable Scope Documentation

share|improve this answer
So nicE! it works! Thank you sir! – Josh Morrison Nov 22 '10 at 8:13
@Andy , try to understand the code – Jigar Joshi Nov 22 '10 at 8:14
so,can I ask, why after this.dataArray = dataArray, modifying dataArray in run() function can reflect to dataArray declared in main? Thanks! – Josh Morrison Nov 22 '10 at 8:17

You can easily add getters to Calculator and fraktal. Smt like getMyArray().

share|improve this answer
I edited my question. Any help? Thanks! – Josh Morrison Nov 22 '10 at 8:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.