What is List | Collections in Apex | Salesforce Development Tutorials for beginners by Shrey Sharma

Поделиться
HTML-код
  • Опубликовано: 12 дек 2024

Комментарии • 78

  • @wisdom-for-life
    @wisdom-for-life 2 года назад +1

    Please tell me I'm not the only one who found this part funny 4:20 - 4:38 ... I was wondering how small he was going to get! lol
    P.S. - Great video. Thanks for the clear explanation.

  • @EDHOKATIESEDDAM
    @EDHOKATIESEDDAM 6 лет назад +6

    keep continue.. don't stop uploading videos 👏

  • @itlumeesantosh4453
    @itlumeesantosh4453 6 лет назад +3

    I like your videos. My suggestion is if you can maintain the series with numbers then it would be helpful for beginners where to start how to continue the videos

  • @tanushrigoyal7057
    @tanushrigoyal7057 6 лет назад +42

    Here is the solution to the question given by you:
    public class twodlistandtranspose {
    public static void main() {
    List twodlist = new List();
    List l1 = new List{1,2,3};
    List l2 = new List{4,5,6};
    List l3 = new List{7,8,9};
    twodlist.add(l1);
    twodlist.add(l2);
    twodlist.add(l3);
    system.debug('Original list is: '+ twodlist);
    for(integer i=0; i

    • @SalesforceHulk
      @SalesforceHulk  6 лет назад +10

      Nice & clean code Tanushri. Try to be fast next time :)

    • @smmgiants31
      @smmgiants31 2 года назад +1

      Tanushree if you are still there then reply this comment please!

  • @rohitdere3715
    @rohitdere3715 6 лет назад +2

    Great. Consistent videos per week will be really appreciated by learners.

  • @pallavikavare9826
    @pallavikavare9826 5 лет назад +4

    Hey Shrey, all your videos are much more helpful for beginners. Could you please make video on trigger in apex. Also please maintain numbering for videos if possible. Thank you!

  • @pratikshajadhav2579
    @pratikshajadhav2579 4 года назад +3

    Thank-you so much, I was searching for arrays in apex from many days :'(

  • @AnandSingh-gv8nr
    @AnandSingh-gv8nr 2 года назад

    Super......thank you bro 😌

  • @divyapriya6585
    @divyapriya6585 6 лет назад +1

    Hello Hulk bhaiyya, is the challenge still open? Can I post my answer here?

  • @anuishwarya6601
    @anuishwarya6601 2 года назад

    Hi have a query to create 3 employee records(name, age, sal, exp) using wrapper class and list

  • @imrankhankhan8842
    @imrankhankhan8842 2 года назад

    great videos bro..................

  • @rishabhsinghal4241
    @rishabhsinghal4241 6 лет назад +7

    public class JuniorHulk {
    public static void main() {
    List force = new List{
    new List{1,2,3},
    new List{4,5,6},
    new List{7,8,9}
    };
    for(Integer i=0; i

    • @SalesforceHulk
      @SalesforceHulk  6 лет назад +3

      Very short and simple code Rishabh. You got good skills just try to be a little early the next time (BEST OF LUCK!) :))

    • @manasabommana1530
      @manasabommana1530 3 года назад +1

      @@SalesforceHulk hey the elements are on same position with this code for me.
      not getting the transpose

    • @Rishikumar-qb1gh
      @Rishikumar-qb1gh 2 года назад

      @@manasabommana1530 he missed if (i > j) below the foe loop

    • @manisha3971
      @manisha3971 2 года назад

      List force = new List{
      new List{1,2,3},
      new List{4,5,6},
      new List{7,8,9}
      };
      can you explain this part why list

  • @art_is_art521
    @art_is_art521 2 года назад

    Helpfull videos🙂

  • @vishalsukalkar2178
    @vishalsukalkar2178 5 лет назад +1

    Hey Shrey,
    Thanks for the the video...it was really helpful :)
    Can you please post the answer of the uc you have asked in the last?

    • @SalesforceHulk
      @SalesforceHulk  5 лет назад +1

      it is there posted as a comment by the winner of this challenge, please have a look.

  • @arpitanargund4431
    @arpitanargund4431 4 года назад

    Does the List in apex support max() and min()?

  • @zameerzamzam3019
    @zameerzamzam3019 6 лет назад +3

    Explain with the complete practically bro I mean to say execute the code & give some more examples

  • @omkarsali7115
    @omkarsali7115 6 лет назад +1

    Great videos...Can you do a video on Object relationships: like Master-detail and Lookup.

  • @shivanidubey4539
    @shivanidubey4539 4 года назад

    Please make a series on Salesforce developer

  • @harsha682
    @harsha682 4 года назад

    nice explanation .. keep doing good video

  • @sayandey8851
    @sayandey8851 5 лет назад

    Please Update the videos of Apex categorically in Salesforce Development Tutorial Series. :)

  • @NareshKumar-vj4jj
    @NareshKumar-vj4jj 5 лет назад

    Hi Hulk, can you guide me how to start salesforce development ... could you please guide me

  • @sikandarkhan2595
    @sikandarkhan2595 6 лет назад +1

    Nice, keep it up

  • @kartikeya3815
    @kartikeya3815 6 лет назад

    Is this question still open @salesforce hulk ?

  • @bachalanarendrareddy4229
    @bachalanarendrareddy4229 4 года назад

    @salesforce hulk i have a question "can we use DML operations on list, set and map"

    • @LalchandRawatVlogs1
      @LalchandRawatVlogs1 3 года назад +3

      Yes, we can directly use DML on List and Set but we have to use the keyset or values method for the map.
      Example -
      List listOfContacts = new List();
      Set setOfContacts = new set();
      Map mapOfContacts = new Map();
      insert listOfContacts;
      update setOfContacts;
      delete mapOfContacts.values();

    • @sachinrnayak3420
      @sachinrnayak3420 3 года назад

      Yes we can

  • @a.kwell_wisher6441
    @a.kwell_wisher6441 Год назад

    But I'm not able to see anything in debug?

  • @RahulRajput-tb6ng
    @RahulRajput-tb6ng 6 лет назад

    Bhai sets or map ke upr video kb upload kroge

  • @SumanKumar-ic2fn
    @SumanKumar-ic2fn 5 лет назад

    When could we use a map over a list?

    • @sachinrnayak3420
      @sachinrnayak3420 3 года назад +1

      Hi,
      Use a map when you want your data structure to represent a mapping for keys to values. Use a list when you want your data to be stored in an arbitrary, ordered format.

  • @AnshikaYadav-ii7eq
    @AnshikaYadav-ii7eq 2 года назад

    Hello sir i wanted to connect you to to know more information about salesforce

  • @nandeeswaripadala8252
    @nandeeswaripadala8252 6 лет назад

    Please provide Set and map link videos

  • @udaykali5306
    @udaykali5306 6 лет назад

    Hi hulk please do video on intigration with some realtime scenarios please hulk

  • @vishalbaranwal9633
    @vishalbaranwal9633 Год назад

    public class Matrix_Transpose {

    public static void transpose(){
    integer t;
    List stList = new List{
    new Integer[]{1,2,3},
    new Integer[]{4,5,6},
    new Integer[]{7,8,9}
    };
    for(integer i = 0; i

  • @techmind4244
    @techmind4244 Год назад +1

    Need ashirt..

  • @suryanshugolechha4308
    @suryanshugolechha4308 6 лет назад

    Bro Create a video on Trigger in Apex

  • @kesanakarthik
    @kesanakarthik 6 лет назад

    Sir please put pd1 videos asap

  • @saipooja7252
    @saipooja7252 5 лет назад +1

    @Salesforce hulk plz post the answer

  • @techmind4244
    @techmind4244 Год назад

    Want to be jr.hulk Shrey

  • @alexzhurylo5536
    @alexzhurylo5536 6 лет назад

    I sent the answer for you task. But I didn't recieve any kind of present from you )

  • @jhumurchatterjee5711
    @jhumurchatterjee5711 6 лет назад

    transpose(listname) is the required method name.

  • @vajiresrinivas946
    @vajiresrinivas946 5 лет назад

    please provide the solution to the question

  • @Srinud-ux4ew
    @Srinud-ux4ew 6 лет назад

    Can you explain this in detailed

  • @justcrazy825
    @justcrazy825 3 года назад

    Can anyone help me with this simple code:
    public class lissssssssst {
    public static listsikhunga(){
    List sl=new List();
    sl.add('rid');
    sl.add('rah');
    sl.add('kar');
    sl.add('saj');
    //System.debug(sl);
    List st=new List{'gaga','jajaja','hahaha'};
    System.debug(st);
    }
    }
    it is showing this error:
    Line: 1, Column: 14
    Method does not exist or incorrect signature: void listsikhunga() from the type lissssssssst

    • @bollywoodmirchitadka5205
      @bollywoodmirchitadka5205 3 года назад +2

      Brother you have used public static listsikhunga(){
      Plz make it public void listsikhunga (){

    • @rajnish6452
      @rajnish6452 2 года назад

      Class name Should be start from Capital letter

  • @gokulakannan7146
    @gokulakannan7146 3 года назад +1

    Bro

  • @akshaymantri4325
    @akshaymantri4325 6 лет назад

    Little bit of less in style and little bit of improvement of english. All your videos can be little better.

  • @gokulakannan7146
    @gokulakannan7146 3 года назад +1

    Hii bro

  • @gunjansoni8945
    @gunjansoni8945 3 года назад

    Bla bla