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.
我在网上做一个计算器教程,有两个单独的类需要导入到主类中
import com.example.brkyclasses.Alertwindow; import com.example.brkyclasses.Calculator2;
当方法在两个类中时,Eclipse 仍然要求我创建方法,我还需要做些什么吗,我需要将这两个类添加到清单还是别的什么
您需要将这些类的源代码或实现这些类的 .jar 文件添加到您的项目中。如果包含 .jar,则需要编辑项目设置并指定 .jar 的位置
这些是特定于包的导入。您需要查看清单 xml 并查看package标签下的包名称(应该像第 3 行)。然后您可能会创建一些名为的文件Alertwindow,Calculator2因此您将导入自己的类。使用package.name.Alertwindow格式。
package
Alertwindow
Calculator2
package.name.Alertwindow