gpt4 book ai didi

Java - 如何从不同的项目调用类?

转载 作者:太空宇宙 更新时间:2023-11-04 12:51:03 26 4
gpt4 key购买 nike

这是我的主类,我尝试从不同的项目调用 ScheduleData 和 ScheduleTime 类。

public main(String[] args) {
ScheduleDate sd = new ScheduleDate();
ScheduleTime st = new ScheduleTime();
int testMonth = 2;
int testDay = 2;
int testYear = 2016;
int testHour = 5;
int testMinute = 30;
String testPeriod = "PM";
sd.setMonth(testMonth);
sd.setDay(testDay);
sd.setYear(testYear);
st.setHour(testHour);
st.setMinute(testMinute);
st.setPeriod(testPeriod)

最佳答案

您需要将项目 B 添加到项目 A 使用的运行配置中。在菜单“运行 -> 运行配置...”中,将项目 B 添加到运行配置的“类路径”选项卡中。

看这里calling a class in another project Eclipse

关于Java - 如何从不同的项目调用类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35832477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com