The Little Guy
Lurker
I am fairly new to Java, but I do have php programing experience. So, my question is
With, avg.bw = ... my Netbeans editor is giving me an error: can not find variable bw
Why not?
Code:
public myClass{
public Object avgRGB(int img){
// Some unrelated code to the problem
Object avg = new Object(){
public double red = 0.0;
public double green = 0.0;
public double blue = 0.0;
public double bw = 0.0;
};
avg.bw = ((red / count) + (green / count) + (blue / count)) / 3;
}
}
With, avg.bw = ... my Netbeans editor is giving me an error: can not find variable bw
Why not?