How to achieve threading ? : for beginners
Reading Time: 3 minutes Multi-threading “Multi” refers to multiple and “threading” refers to threads as a unit of process. So, it is a technique to perform multiple operation within a single process using multiple threads which are independent in nature and share the same address space. If exception occurs in one thread, it does not affect the others. Why do we require threads ? 1.Less Completion Time 2. Beneficial for gaming Continue Reading