answersLogoWhite

0

Multithreading in Java is the concept by which you can have multiple threads of execution running in parallel. Unfortunately the topic is too big to be summarized in one answers. You can check the related links section for links that can help you understanding this complex topic

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Does java support multithreading or not justify your answer?

yes!


Why is single thread system not used in java?

Because the developers of Java considered the possibility of multithreading a big advantage. You don't HAVE TO use multiple threads; just use it when you need it.Because the developers of Java considered the possibility of multithreading a big advantage. You don't HAVE TO use multiple threads; just use it when you need it.Because the developers of Java considered the possibility of multithreading a big advantage. You don't HAVE TO use multiple threads; just use it when you need it.Because the developers of Java considered the possibility of multithreading a big advantage. You don't HAVE TO use multiple threads; just use it when you need it.


Why java is multi threated?

Why shouldn't it? Multithreading is an advantage, because it lets you make full use of a computer with multiple processors. Mind you, you don't HAVE TO use it - you can perfectly well write programs without multithreading. But in actual practice, many situations arise where you want the computer to do several things at once. Even with a single processor, multithreading offers a convenient way to share the computer time between different tasks.


What are the features of core java?

Core java refers to the core or basic concepts of the Java programming language. Things like encapsulation, inheritance, multi-threading, exception handling and other basic feature of java that comes as part of the Java standard edition forms Core Java


What is the definition of Core Java?

Core java refers to the core or basic concepts of the Java programming language. Things like encapsulation, inheritance, multi-threading, exception handling and other basic feature of java that comes as part of the Java standard edition forms Core Java


Does java support oops concept?

Yes. Java is an Object Oriented Programming Language and it supports the OOPS concepts like Inheritance, Polymorphism etc


What is the difference between hyperthreading and simultaneous multithreading?

Actually, hyperthreading is Intel's name for its implementation of simultaneous multithreading.


What are the features of the core?

Core java refers to the core or basic concepts of the Java programming language. Things like encapsulation, inheritance, multi-threading, exception handling and other basic feature of java that comes as part of the Java standard edition forms Core Java


What are multithreading models?

check


How old is simultaneous multithreading?

Simultaneous multithreading was first researched in 1968 as part of IBM's ACS-360 project.


What is the course content of core java?

Core Java in itself is an ocean. It contains numerous concepts and areas that can be very useful in software development. The course contents depend on what course you are taking? In general, any core java course would include concepts like: a. Object Oriented concepts like Inheritance, Polymorphism etc b. Strings c. Objects d. Classes & Interfaces e. Threads f. Serialization g. Exception Handling h. Garbage collection etc


What is volatile and why are using in java?

volatile variable is mainly used in multithreading environment. so let me explain it from that context.In a multithreading environment,for a variable which is not marked as volatile will be stored in local cache memory for each thread. Meaning each thread will have a local copy of the variable and they dont know about what value this variable is having in another thread. If a variable is marked volatile, then the updations to this variable will happen in the main memory and not in local cache