JVM Architecture

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

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

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

    Very informative and very basic video. All other videos are just telling about coding without clearing the concept of how programming Languages work. Many many thanks to BigDataElearning.

  • @aniruddhasardar723
    @aniruddhasardar723 4 года назад +6

    It's simple and solid and crisp... very well organised tutorial on JVM architecture

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

    Wow, that was an amazing explanation, I have seen many courses and tutorials and I can say that this is the first one where I truly learned this concepts.

  • @TheBytao7mao
    @TheBytao7mao Год назад +3

    finnaly found someone with coherent english grammar to teach me java :))

  • @tamaghnadey3050
    @tamaghnadey3050 4 года назад +7

    I learned a lot than I expected. Thank you sir!

  • @Pomocny_Dzik123
    @Pomocny_Dzik123 Месяц назад

    Clear and solid video.

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

    Best video available on JVM thanks

  • @ponnulingam8674
    @ponnulingam8674 5 месяцев назад

    Best explanation i ever seen

  • @1xplorer
    @1xplorer 2 года назад

    That’s Java
    I spent 7 years engaging with the technology and still haven’t got enough it’s ecosystems!

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

    Thankyou for the detailed explanation 🙂

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

    Clear and thorough!

  • @user-do8mv9ow6d
    @user-do8mv9ow6d 4 месяца назад

    This this truely the best explanation..❤ I have heard that bootstrap class loader starts the other two class loaders.Can you explain it for me?

  • @SandeepReddy-eq5lg
    @SandeepReddy-eq5lg 4 года назад +1

    It's simply superb.👍

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

    Best one on Internet!!!

  • @shubhampawar.7776
    @shubhampawar.7776 3 года назад

    great presentation and excellent explanation

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

    Very concise information!!

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

    Great explanation

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

    Simple and awesome.Thanks a lot😀

  • @YubrajTolangi-f6d
    @YubrajTolangi-f6d 11 месяцев назад

    wow nice class

  • @nh99988
    @nh99988 27 дней назад

    Thank you

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

    Very clear explanation 👌👍

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

    Hi, I learned a lot. And I have confusion, can you tell me which software do you use to make this animation ? thank you.

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

    amazing

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

    Nice explanation

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

    Nice video!

  • @ahmedmohammed9462
    @ahmedmohammed9462 4 года назад +1

    very helpful video thank you so much
    i have a question, is there any way to know all classes loaded in the method area section?

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

      You can use the option: -verbose:class
      So the command to run the application would be: java -verbose:class classfilename

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

    Hi, great explanations. I have a question, where are static final instance variables and final method local variables are stored?

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

      You cannot have static instance variables. Static variables are class variables.
      Final method local variables are stored in Heap.

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

    That was cool 😎..

  • @jvsnyc
    @jvsnyc 4 года назад +1

    At ~2:02, you call it "RTE.jar" and also, hasn't RT.jar started to go away in the most recent JDK versions? Great video tho.

  • @AbdullahAlMamun-fh9gs
    @AbdullahAlMamun-fh9gs 4 года назад

    nice description.

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

    what is symbolic reference and actual reference?

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

    What we do in resolve phase

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

    Has anyone pointed out that the word "extension" is spelled incorrectly?

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

    🤩

  • @swarnalatha-up4gi
    @swarnalatha-up4gi 3 года назад +1

    That's a lot of information to get in 497 seconds....

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

    This video is great but outdated, in Java8+ there is no method area.

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

    Does anybody know which programming language is written the JVM in?

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

      C++ or C.

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

      According to Geeksforgeeks article, namely "How JVM Works", it says Java Native Interface (JNI) and Native Method Libraries use C, C++ which are required by the Execution Engine.
      Sourse: www.geeksforgeeks.org/jvm-works-jvm-architecture/