wat doe ik hier fout?
Error code:
Lijkt wel of een static method niet goedsamen werkt met this. ofzo.
code:
1
2
3
4
5
6
7
8
9
| public class test
{
private static String color = "white";
public static void setColor(String color)
{
this.color = color;
}
} |
Error code:
code:
1
2
3
4
5
6
7
| --------------------Configuration: Hst5 - JDK version 1.2.2 <Default>--------------------
K:\School\Infm2\Opdrachten\Infm2\Hst5\test.java:7: Undefined variable: this
this.color = color;
^
1 error
Process completed. |
Lijkt wel of een static method niet goedsamen werkt met this. ofzo.