StationInformation.java:65: error: non-static variable this cannot be referenced from a static context
Station mile_end = new Station();
^
StationInformation.java:66: error: non-static variable this cannot be referenced from a static context
Station oxford_circus = new Station();
^
StationInformation.java:67: error: non-static variable this cannot be referenced from a static context
Station kings_cross = new Station();
^
StationInformation.java:68: error: non-static variable this cannot be referenced from a static context
Station stepney_green = new Station();
^
4 errors
Я работаю над программой. Я постоянно получаю следующие ошибки: [code]StationInformation.java:65: error: non-static variable this cannot be referenced from a static context Station mile_end = new Station(); ^ StationInformation.java:66: error: non-static variable this cannot be referenced from a static context Station oxford_circus = new Station(); ^ StationInformation.java:67: error: non-static variable this cannot be referenced from a static context Station kings_cross = new Station(); ^ StationInformation.java:68: error: non-static variable this cannot be referenced from a static context Station stepney_green = new Station(); ^ 4 errors [/code] Я хочу исправить программу.