public static final class StrictMode.ThreadPolicy
extends Object
java.lang.Object | |
↳ | android.os.StrictMode.ThreadPolicy |
应用于某个线程的 StrictMode
策略。
该策略由setThreadPolicy(StrictMode.ThreadPolicy)
启用。 当前的政策可以通过getThreadPolicy()
进行检索。
请注意,可能会提供多重处罚,并且它们按照从最不严重到最严重的顺序(例如在处理死亡之前记录)执行。 目前没有机制为不同的检测到的行为选择不同的处罚。
Nested classes |
|
---|---|
class |
StrictMode.ThreadPolicy.Builder |
Fields |
|
---|---|
public static final StrictMode.ThreadPolicy |
LAX 缺乏任何东西的默认的松懈政策。 |
Public methods |
|
---|---|
String |
toString() 返回对象的字符串表示形式。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
String toString ()
返回对象的字符串表示形式。 通常, toString
方法返回一个“文本表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。
类Object
的toString
方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @
”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Returns | |
---|---|
String |
a string representation of the object. |