我有一個名爲AttachmentsBean
的類,它有一個名爲showUploadDialog()
的方法。在名爲UploadBean
另一個類,當我執行下面的代碼:不能從靜態上下文中引用不同類的非靜態方法
if(count=0)
{
return AttachmentsBean.showUploadDialog();
}
我得到的錯誤:
"Non-static method cannot be referenced from a static context".
請建議。