英文: I faced an error while creating a circle object in my driver code 问题 以下是翻译好的部分: // 这是我的方法和数据字段的代...
`this()`和`new Object()`在重载构造函数内部的区别是什么?
英文: What is the difference between this() and new Object() inside a overloaded constructor? 问题 我有以下的...
无法打印传递给构造函数的数组。
英文: Unable to print the array which is passed to the constructor 问题 问题在于我需要打印包含学生分数的数组在内的对象信息,但它却输出了...
强制执行通用的初始化步骤到一个抽象方法。
英文: enforcing common initilisation steps to an abstract method 问题 我目前正在重构一组类,可以简化如下: public abstract...
将全名拆分为名字和姓氏,然后将代码组合以在程序中使用。
英文: Split full name into first and sur name and then combine code to use with the program 问题 我是一名大一学...
使用一个对象数组或ArrayList,以便将文件中的所有记录都存储在内存中。
英文: use an array or arrayList ofan objects so that all of its records from the file can be stored in...
从CSV文件中读取并创建对象
英文: Reading from CSV file and create object 问题 我是一个对Java完全初学者,我被分配了一个练习,其中我必须从CSV文件中读取数据,然后在程序读取文件的同...
无法将值添加到Java中方法的返回值中
英文: Cannot add value to methods return value in java 问题 以下是您要翻译的内容: 我在每个员工子类中都有一个方法来计算他们的收入并返回该值。在我的...
理解实现Java扩展类
英文: understanding implementing Java Extended Classes 问题 我目前正在学习Java,我被分配了一个理解面向对象编程(OOP)的任务。 我理解类的理论...
用循环创建对象,但仍然可以在循环外部访问它们?
英文: Creating objects with a loop and still can access them outside the loop? 问题 我是Java和面向对象编程的初学者。 我...
37