Thread-safe and thread synchronization in Java and iOS

Source: Internet
Author: User

Thread safety in Java is synchronized with threads:

  1. Create a thread to implement the class MyThread, as the threading body;
  2. Create a Test class, generate two thread objects in the main function, two objects common one line Cheng (MyThread object);
  3. Thread safety: Avoid multiple threads accessing unified resources at the same time;
  4. Solution: Add synchronous lock; Synchronized (this) {The resource to be accessed;}
Thread-safe synchronization with threads in IOS
  1. Thread Safety: The same resource can only allow access to one thread at a time of unification
  2. Workaround:
    1. Method One: Add the sync lock @synchronized (self) {the resource to access;}
    2. Method Two: Use lock class Nslock;  Nslock *alock; [Alock Lock]; The resources to be accessed; [Alock UnLock];

Thread-safe and thread synchronization in Java and iOS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.