Java 迭代队列何时是类的成员
Java中有没有办法迭代对象的成员变量? 我有这样的场景:
class ItemToUpdateTipo0 {
public String ticker;
public ItemToUpdateTipo0() {
}
public ItemToUpdateTipo0(String ticker) {
this.ticker = ticker;
}
}
public class DataStoreTipo0 {
private Queue <ItemToUpdateTipo0> QueueItemToUpdateTipo0 = new ConcurrentLinkedQueue<ItemToUpdateTipo0>();
...
}
有一种方法可以做类似的事情:
public static void main(String[] args){
DataStoreTipo0 dataStoreTipo0 = new DataStoreTipo0();
for (ItemToUpdateTipo0 obj : dataStoreTipo0) {
System.out.println(obj.titolo);
}
}
提前致谢。
There's a way to iterate the member variables of an object in Java?
I have this scenario:
class ItemToUpdateTipo0 {
public String ticker;
public ItemToUpdateTipo0() {
}
public ItemToUpdateTipo0(String ticker) {
this.ticker = ticker;
}
}
public class DataStoreTipo0 {
private Queue <ItemToUpdateTipo0> QueueItemToUpdateTipo0 = new ConcurrentLinkedQueue<ItemToUpdateTipo0>();
...
}
There's a way to do something like:
public static void main(String[] args){
DataStoreTipo0 dataStoreTipo0 = new DataStoreTipo0();
for (ItemToUpdateTipo0 obj : dataStoreTipo0) {
System.out.println(obj.titolo);
}
}
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让你的类实现 Iterable 接口才能使其工作。
例如,
请注意,您需要编辑代码以使其遵循 Java 命名约定。例如,类应以大写字母开头,而方法和字段应以小写字母开头。您也不想尝试直接访问 ItemToUpdateTipo0 的字段,而是使用公共 getter 和可能的 setter 方法来为您执行此操作。
Have your class implement the Iterable interface for this to work.
e.g.,
Note that you'll want to edit your code so that it follows Java naming conventions. For instance classes should start with upper-case letters while methods and fields should start with lower-case letters. You'll also not want to try to directly access ItemToUpdateTipo0's fields but rather use public getter and possibly setter methods to do this for you.