如果我有以下方法:如何靜態方法轉換成實例方法
public static void flipHorizontal(Picture v){
int w = v.getWidth();
int h = v.getHeight();
int width = w;
for(int y = 0; y < h; y++){
for(int x = 0; x < w/2; x++){
Pixel pixelobj = v.getPixel(x, y);
Pixel bottomPixel = v.getPixel(width - 1 - x, y);
bottomPixel.setColor(pixelobj.getColor());
}
}
}
如何創建它變成一個實例方法?我知道這與去除靜電有關,但我從哪裏去?
只是刪除靜態..它不再是靜態的 – Rahul
不要害怕。去除靜電並開心。之後的任何問題,向我們解釋可以幫助你。 –