英文: Turn an object of Object into an object of different type? 问题 不确定问题是否有意义,但基本上我要做的是这样的: Object ob...
循环遍历数组以比较对象属性,无需复制。
英文: Looping through an array to compare object properties without duplicating 问题 // 移动所有的物体 for (int...
如何高效实现抽象类的多个方法?
英文: How do I implement multiple methods of an abstract class efficiently? 问题 我需要实现一个带有3个抽象方法的抽象类 abs...
使用Java中的接口和组合 – 使用不同变量重用代码
英文: using interface and composition in java - reuse code with different variables 问题 我在尝试重用代码时遇到了问题。...
在Java中是否可以有一种方法,根据条件返回不同的类对象?
英文: Is it possible to have a method that can return different class objects in Java depending on the...
如何访问对象 o 的 getter?
英文: How do i get access to getters for Object o 问题 我问题是如何访问对象 o 的 getters。它是 BankTransaction 的一个实例,但...
how to write a common method for two generated classes in different packages but all same methods in Java
英文: how to write a common method for two generated classes in different packages but all same method...
如何通过父类的方法调用子类的方法?
英文: How to call the method of the subclass using method of Parent class? 问题 public class Shape { dou...
有没有一种方法可以立即将一个对象存储到另一个类的列表中?
英文: Is there a way to store a object immediately to a another classes list? 问题 标题,我在考虑像这样的东西 Shapes ...
类是否应该为它们的依赖关系定义获取器?
英文: Should classes define getters for their dependencies? 问题 假设我有一个名为 car 的类,其中包含一个 motor。 Motor 类的定...
37