如何遍历salesforce中的列表

时间:2016-08-31 05:15:54

标签: loops iterator salesforce

我是salesforce的新手,我想迭代部门图片,任何人都可以帮助我吗?

以下是代码:

 public class Hospital_Controller {
 public List<attachment> HodImages {get; set;}
 string recid;
 string recId1 ;
 public Hospital_Controller(ApexPages.StandardController controller) {
      recId = controller.getId();   
      HodImages  = new List<attachment>();
      List<Department__c> depIds =[select id from Department__c];
      HodImages = [select id,name from attachment where parentId =:depIds];

  }
}

1 个答案:

答案 0 :(得分:2)

您可以通过两种方式在顶点中迭代List。

这是循环列表的先行方法。

List<string> stringList = new List<String>{'sample1', 'sample2'};
for (String str : stringList)
    system.debug(str);

或者你可以按常规进行循环。

List<string> stringList = new List<String>{'sample1', 'sample2'};
for(Integer i = 0; i < stringList.size(); i++)
    system.debug(stringList[i]);

有关 Force.com List class的更多示例,您可以查看他们的文档here