Created
September 29, 2016 14:56
-
-
Save AITUncle/af71f6f7fa96e7f61f46e6efe17712da to your computer and use it in GitHub Desktop.
daily
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
我的日志 |
AtomicBoolean.getAndSet(newValue) //返回原来旧的值,并设置新的值
AtomicBoolean.compareAndSet(expect,update) //只有返回为true时才会更新值为update,只有expect等于原来的值才会返回true
酷狗中,对音频文件计算hash的代码实现。
PreCalcHashValueRunnable.run
潮汕地区,是广东省汕头市、潮州市、揭阳市三个地级市的统称
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
android中当崩溃引发二次崩溃是:调用uncaughtException时,我们在调用系统默认的sDefaultHandler.uncaughtException(thread, ex)来处理时,并不会弹窗提示崩溃,而是直接闪退。