Wrapper Classes In Java - Core Java - Part -11

Поділитися
Вставка
  • Опубліковано 10 лют 2025

КОМЕНТАРІ • 22

  • @priyanshmamgain8221
    @priyanshmamgain8221 4 місяці тому

    You cover everything in a very understandable manner. Thankyou

  • @shahdhardik
    @shahdhardik 5 років тому +15

    Your videos are good . One suggestions is that in your videos show font are too small . would be great to have those bigger readable fonts. But i really appreciate the learning i get from videos.

  • @devjewel8345
    @devjewel8345 6 років тому +2

    It's been a great journey up to here ...

  • @itindranil
    @itindranil 4 роки тому +3

    Example of String to Char
    String j = "Ant";
    char c = j.charAt(0); //charAt() method will convert first index of string to char
    System.out.println(c); // will print A
    char[] c_Array = j.toCharArray(); // returns a length 3 char array ['A','n','t']
    System.out.println(c_Array);

  • @akulabhaskar3797
    @akulabhaskar3797 4 роки тому +1

    Naveeen u r just amazing

  • @jahangiralikhan2410
    @jahangiralikhan2410 5 років тому +2

    Hi Naveen, Can you please make a video where we use in real projects in automation testing. it would be very helpful for the automation community who watches the video.
    A humble request from my side
    Thanks! :)

  • @lucylucy8517
    @lucylucy8517 4 роки тому

    Best explanation sir...

  • @sumayazamasyed8982
    @sumayazamasyed8982 6 років тому +1

    Hi Naveen sir, I've a doubt... please tell me how run () method of thread class is user defined in Java? ... Thread class consists of all these methods like start () getState() etc these are built in but run () is user defined how is it possible? Thanks

    • @ravurisandeep8377
      @ravurisandeep8377 5 років тому

      Who told u run() is user-defined..it is predefined method signature

  • @spidyniks
    @spidyniks 7 років тому

    Naveen nice and clearly explained. But why these classes are named wrapper claases?

  • @timetogrow1306
    @timetogrow1306 3 роки тому

    Can u complete the Java series

  • @VaishnavM.Wakale
    @VaishnavM.Wakale 2 роки тому

    Hi Naveen, Did you share all the code anywhere?

  • @RahulJha-bu7cv
    @RahulJha-bu7cv 5 років тому +2

    //String to Char
    String q = "ABC";
    char a = q.charAt(0);
    char b = q.charAt(1);
    char c = q.charAt(2);
    System.out.println(a);
    System.out.println(b);
    System.out.println(c);
    //OR
    String S = "HELLO";
    char arrchar[] = S.toCharArray();
    for(int i=0; i

  • @mudaseerahmed7336
    @mudaseerahmed7336 6 років тому

    Nice

  • @rupaguzar6589
    @rupaguzar6589 5 років тому

    is instance variable and global variable is same

    • @damuappanna4188
      @damuappanna4188 4 роки тому +1

      Instance variable and global variable both are different. Instance variables also called as non static variables where as global variable can be declared with static keyword

  • @shrijayantjain4837
    @shrijayantjain4837 6 років тому

    Can't we convert string into character, like other datatypes ?

    • @pvenugopalarao9066
      @pvenugopalarao9066 5 років тому +1

      //conversion from String to Chars
      String s="AnyString";
      char[] chars = s.toCharArray();
      for(char temp:chars) {
      System.out.println(temp);
      }

  • @thiery572
    @thiery572 7 років тому

    Oooo.... :)