Java in Tamil - String Introduction - String is Immutable, String Methods in Tamil - Payilagam

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

КОМЕНТАРІ • 29

  • @Js-Lovers
    @Js-Lovers 3 роки тому +13

    i am mechanical student.semma clear understanding sir❤❤

  • @akashpraveen9814
    @akashpraveen9814 3 роки тому +5

    Aiya..JavaScript playlist um add paningana arumaiyaga irukum aiya..🙏🏻🙏🏻👍👍❤❤

  • @arunsekar6341
    @arunsekar6341 3 роки тому +1

    Super Explanation... It made very clear about String class. Thanks

  • @maaveeran0412..
    @maaveeran0412.. 4 роки тому +2

    Super sir.. I need more videos about Java

  • @avinoth9419
    @avinoth9419 2 роки тому

    your videos are helping often when i have puzzle with concept. thx u so much sir

  • @nothingmuch140
    @nothingmuch140 2 роки тому +2

    hats off sir😍🤩🤩

  • @prakashvish3988
    @prakashvish3988 3 роки тому +1

    Very very useful ❤️

  • @muthukrishnansp1085
    @muthukrishnansp1085 Рік тому

    Super sir❤

  • @sanjays7255
    @sanjays7255 2 роки тому +2

    Sir nice explanation sir ,
    But here one small mistake sir ,
    Hashcode memory address sa return
    Pannadhu
    Adhukkaana hash value va return pannum
    Formula: s[0]*31^lenght-1+.......+s[n]*31^0
    If made mistake means pls point out my mistake sir
    Thank u😊😊

  • @baskaranboss8036
    @baskaranboss8036 Рік тому

    Nice...Explain

  • @soundaryajayaseelan6677
    @soundaryajayaseelan6677 3 роки тому +1

    Hai, sir please post framework videos, spring, spring boot, hibernate

  • @vanithask459
    @vanithask459 2 роки тому +3

    hello sir... i am having one doubt sir... if we create two objects like this,
    String s1=new String("welcome");
    String s2="welcome";
    when we printing the hashcode() of those objects, i get the same output. when we create object with new keyword, that object stored in heap memory. when we create literal, is that literal points that same value in heap memory? please clear my doubt sir

    • @mushua6060
      @mushua6060 2 роки тому

      Yeah It Points To Same Address Cause Java Works Like That To Reduce Memory And Until If You Done Any Correction It Points To Same Address.

    • @irshadahamed5786
      @irshadahamed5786 2 роки тому

      No it was in the memory of heap contains str constant pool in that nly it will save

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

    Sir, one interview question how to create custom immutable class?

  • @chandrusekar5070
    @chandrusekar5070 2 роки тому

    Super sir

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

    Very Useful🙏. Kotlin basics videos konjam pannunga sir plz..!

  • @sandhyasandy8151
    @sandhyasandy8151 2 роки тому

    Sir neenga unga java software kedaikum ah

  • @surendhiran1891
    @surendhiran1891 2 роки тому

    Tq sir

  • @santhoshs7862
    @santhoshs7862 2 роки тому

    Why type ..count=1 or 0 i confused 🤔

  • @balajiabd2173
    @balajiabd2173 3 роки тому +1

    Sir toString method puriyala

  • @ECASUBAIDASY
    @ECASUBAIDASY 2 роки тому

    Count ++ yen podamum

  • @devisara2459
    @devisara2459 2 роки тому

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

    👍

  • @Tnusrb_09_01
    @Tnusrb_09_01 2 роки тому

    Sir notes kedaikuma sir

  • @vinith2320
    @vinith2320 3 роки тому +1

    Sir I have a problem and I can't find a solution in Internet
    Neenga intha comment uh patheenga na please paste your solution here
    Question is :
    "Hello World of java and python" replace first 2 letters of each word in this string with number "12"
    Hope I get a response from you sir...

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

      Try replace keyword. If don't know about replace keyword refer that videos

    • @narenkrishh7412
      @narenkrishh7412 3 роки тому +5

      public class Read
      {
      public static void main(String[]args)
      {
      StringBuffer sb = new StringBuffer("Hello World of java and python");
      for(int i=0;i