Creating Threads and Executing Tasks | Thread, Runnable, Callable, Future, Executors | Geekific

Поділитися
Вставка
  • Опубліковано 5 вер 2024

КОМЕНТАРІ • 9

  • @fridaaa0
    @fridaaa0 2 роки тому +16

    Your channel is a gold mine! So glad I discovered it

    • @geekific
      @geekific  2 роки тому +6

      Comments like yours are what keep me going! Thank you :)

  • @benedikt7718
    @benedikt7718 Місяць тому

    Awesome content. Really awesome!!!
    I'm new to Java (3 Months in) and your videos break down the functionality, technicality and the use cases of Javas implementation approaches, to very digestible packages.
    I haven't found many creators that produce this concise, explanatory and overall enjoyable content in a while. I really Appreciate your work!

    • @geekific
      @geekific  Місяць тому +1

      Thanks a lot! I am so glad I could be of help!

  • @santoshdhariwal8979
    @santoshdhariwal8979 7 місяців тому +2

    very well explained and cleared all doubts and confusions.

  • @homeboy6668
    @homeboy6668 Рік тому +2

    The video was really fun! Keep up the good work!

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

    so glad I discord your channel. you really simplified things for learning. Thank you so much.

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

    in 1:30, since thread.start() is the first to be executed why do we call this nonditrminstic? Thank you for the videos, Pretty helpful

    • @geekific
      @geekific  Рік тому +5

      When you create a thread, you kind of tell your app: "Hey, please run me this logic at some point in the future, the soonest possible", but it doesn't tell it "Run this now before reading the next lines of the code". Meaning, it might reach and run the second thread before running the first one. Hope this helps!