我主類始於此:不能使用「本」,由於靜態方法,但我不得不
public class ranks extends JavaPlugin implements Listener{
類裏,我有:
public static boolean isAdmin(String playerName){
File adminFile = new File(this.getDataFolder() + File.separator + "admins.txt");
的問題是,我不能使用「this」。 isAdmin必須因爲另一個類是靜態的:
public class customInventory implements Listener{
我需要使用訪問它:
if(!ranks.isAdmin(e.getPlayer().getName())){
作爲概述,位居使用方法從customInventory,反之亦然。谷歌搜索靜態方法,不能使用「這個」沒有任何幫助。
這是Java的慣例,大寫類名的第一個字母 – leeor
也許是這樣。這並不能解決我的問題,雖然 – Rixterz
我覺得人們不高興,因爲我遇到了問題,需要幫助解決它。這就是我首先寫了這個該死的問題。 – Rixterz