,可以通过以下步骤实现:
以下是一个示例代码:
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
// 创建多个类对象
MyClass obj1 = new MyClass();
AnotherClass obj2 = new AnotherClass();
// 将类对象存储在集合中
ArrayList<Object> objects = new ArrayList<>();
objects.add(obj1);
objects.add(obj2);
// 使用for循环遍历类对象
for (Object obj : objects) {
// 调用类方法
if (obj instanceof MyClass) {
((MyClass) obj).myMethod();
} else if (obj instanceof AnotherClass) {
((AnotherClass) obj).anotherMethod();
}
}
}
}
class MyClass {
public void myMethod() {
// 类方法的具体实现
System.out.println("This is MyClass.myMethod()");
}
}
class AnotherClass {
public void anotherMethod() {
// 类方法的具体实现
System.out.println("This is AnotherClass.anotherMethod()");
}
}
在上述示例中,我们创建了一个MyClass
和一个AnotherClass
的对象,并将它们存储在ArrayList
中。然后,通过for循环遍历集合中的对象,并根据对象的类型调用相应的类方法。
请注意,这只是一个简单的示例,实际应用中可能涉及更多的类和方法。根据具体情况,你可以根据需要进行调整和扩展。
领取专属 10元无门槛券
手把手带您无忧上云