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

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ม.ค. 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

  • @nothingmuch140
    @nothingmuch140 2 ปีที่แล้ว +2

    hats off sir😍🤩🤩

  • @avinoth9419
    @avinoth9419 2 ปีที่แล้ว

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

  • @maaveeran0412..
    @maaveeran0412.. 4 ปีที่แล้ว +2

    Super sir.. I need more videos about Java

  • @prakashvish3988
    @prakashvish3988 3 ปีที่แล้ว +1

    Very very useful ❤️

  • @muthukrishnansp1085
    @muthukrishnansp1085 ปีที่แล้ว

    Super sir❤

  • @baskaranboss8036
    @baskaranboss8036 2 ปีที่แล้ว

    Nice...Explain

  • @surendhiran1891
    @surendhiran1891 2 ปีที่แล้ว

    Tq 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😊😊

  • @chandrusekar5070
    @chandrusekar5070 2 ปีที่แล้ว

    Super sir

  • @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?

  • @sandhyasandy8151
    @sandhyasandy8151 2 ปีที่แล้ว

    Sir neenga unga java software kedaikum ah

  • @santhoshs7862
    @santhoshs7862 2 ปีที่แล้ว

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

  • @venkadesansivalingam3979
    @venkadesansivalingam3979 3 ปีที่แล้ว

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

  • @devisara2459
    @devisara2459 3 ปีที่แล้ว

  • @gowdilyank2427
    @gowdilyank2427 3 ปีที่แล้ว

    👍

  • @balajiabd2173
    @balajiabd2173 3 ปีที่แล้ว +1

    Sir toString method puriyala

  • @ECASUBAIDASY
    @ECASUBAIDASY 2 ปีที่แล้ว

    Count ++ yen podamum

  • @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 ปีที่แล้ว +6

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