What is String Pool In Java Video

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

КОМЕНТАРІ • 13

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

    Wonderful job.

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

    Thank you, sir!

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

    very well explained the String Pool concept. Thanks a ton.

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

    nice series i am watching from bottom to top in the list...

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

    thank you so much.....very useful

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

    thank you sir

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

    very good and concise, thank you

  • @dheyson-alves
    @dheyson-alves 6 років тому

    Really would like these slides, could you shared them? Or are they stored somewhere? Please

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

    Thanks!

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

    Why String doesn't use scp only

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

    you still need to learn, keep learning dude !

  • @RS-so7ke
    @RS-so7ke 7 років тому +1

    "Hello".toLowerCase()="hello"
    "he"+"llo" = "hello"
    why theres a difference in the answers of both cases?
    in the first case you say that memory location of "Hello " is different than "hello" so it will give false.
    But even in second case memory location of "he" is different than "hello"

    • @ayushi03jain
      @ayushi03jain 7 років тому +1

      Hi Ravi. I don't agree with this. If the value of "Hello" is changed then why are Strings immutable. I think "Hello".toLowerCase() creates a new String object hence the address is different (you can check the source code for toLowerCase)