嗨,大家好我是新來的Java我定義的變量爲全局並試圖從一個靜態函數訪問變量,如如下:錯誤而訪問全局變量,靜態函數
public class PDFEMAIL
{
String a = "abc";
public static void main(String args[])
{
testme();
}
public static void testme()
{
System.out.print("Welcome "+a);
}
}//class end
我得到一個錯誤如下所示:
error: non-static variable a cannot be referenced from a static context
System.out.println("Welcome"+a);
請幫幫忙。我需要把它作爲「Welcome abc
」我是新來的!
那麼,讓'a'爲'static'變量? –