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.
如何将对象引用传递给另一个类中的另一个方法?
我的程序的目标是从包含成绩单的文件中计算学生的 GPA。我正在努力解决的部分涉及 3 个课程。
有 GPACalculator,其中包含 main。有成绩单和课程。成绩单类读取文件并从中构建课程。
到目前为止,我的成绩单类具有读取成绩单文件的当前行并根据这些信息构建课程对象的方法。
我现在需要能够将课程对象发送到 gpa 计算器的主要方法,以便我可以将其打印到终端窗口。这就是我卡住的地方。
谢谢
GPA calculator probably needs to make a new course object:
CourseObject courseobject = new CourseObject(args);
Then you need to do something like: courseobject.getData();
courseobject.getData();