How do I fix “cannot resolve method”?
问题 So first I have this class: public float getPixel(int height, int width) { return data[height][width]; } public void setPixel(float value, int height, int width) { if (value > getMax()) value = getMax(); if (value < 0) value = 0; data[height][width] = value; } private Image(String magicNumber, int height, int width, float max) { this.magicNumber = magicNumber; this.width = width; this.height = height; this.max = max; data = new float[height][width]; } ... public Image clone() { Image clone =