Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android 开发者文档没有提到下面的方法(以及类似的方法)是否是同步的:Log.i(String tag, String msg)
任何人都可以对此有所了解吗?
android.util.Log在调用线程上调用其所有方法。所以是的,它是同步的(如果不是,IMO 会有点傻)。
android.util.Log
您可以在此处找到源代码。