Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用另一个类文件中的方法。但是,我得到一个错误。
错误:找不到符号 符号:变量 dPUSe 位置:类 StatInput
这是我的主要课程:
DeterminePoints dPUse = new DeterminePoints(); if(choice == 1){ dPUse.topLane(); }
方法 topLane() 是我在同一文件夹中的另一个类文件中的空方法:
public void topLane(){ }
但我收到了上述错误。
您的代码和错误消息之间的大写是关闭的:
错误信息:Symbol: variable dPUSe
Symbol: variable dPUSe
代码:DeterminePoints dPUse
DeterminePoints dPUse
您在任何地方都使用带有大写字母 S 的那个吗?因为你还没有定义那个,所以 Java 不知道那是什么。
看起来像是您使用的某个地方,dPUSe,而不是 dPUse
您必须创建该类的实例或使此类扩展该类以使用该类中的方法,