|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object javax.management.MBeanFeatureInfo javax.management.MBeanConstructorInfo
public class MBeanConstructorInfo
描述 MBean 所公開的建構子。此類別的實例是不可變的。子類別可以是可變的,但是不推薦使用此特性。
欄位摘要 |
---|
從類別 javax.management.MBeanFeatureInfo 繼承的欄位 |
---|
description, name |
建構子摘要 | |
---|---|
MBeanConstructorInfo(String description,
Constructor constructor)
建構一個 MBeanConstructorInfo 物件。 |
|
MBeanConstructorInfo(String name,
String description,
MBeanParameterInfo[] signature)
建構一個 MBeanConstructorInfo 物件。 |
|
MBeanConstructorInfo(String name,
String description,
MBeanParameterInfo[] signature,
Descriptor descriptor)
建構一個 MBeanConstructorInfo 物件。 |
方法摘要 | |
---|---|
Object |
clone()
返回此實例的淺表副本。 |
boolean |
equals(Object o)
比較此 MBeanConstructorInfo 與另一個 MBeanConstructorInfo。 |
MBeanParameterInfo[] |
getSignature()
返回此建構子的參數列表。 |
int |
hashCode()
返回該物件的雜湊碼值。 |
String |
toString()
返回該物件的字元串表示。 |
從類別 javax.management.MBeanFeatureInfo 繼承的方法 |
---|
getDescription, getDescriptor, getName |
從類別 java.lang.Object 繼承的方法 |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
建構子詳細資訊 |
---|
public MBeanConstructorInfo(String description, Constructor constructor)
MBeanConstructorInfo
物件。已建構物件的 Descriptor
套件括 Constructor
物件(包含 DescriptorKey
元註釋)產生的欄位。
description
- 該操作的可讀描述。constructor
- 描述 MBean 建構子的 java.lang.reflect.Constructor
物件。public MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature)
MBeanConstructorInfo
物件。
name
- 該建構子的名稱。signature
- 描述該建構子的參數(變數)的 MBeanParameterInfo
物件。該參數可以為 null,與零長度陣列的效果相同。description
- 該該建構子的可讀描述。public MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature, Descriptor descriptor)
MBeanConstructorInfo
物件。
name
- 建構子名稱。signature
- 描述該建構子的參數(變數)的 MBeanParameterInfo
物件。該參數可以為 null,與零長度陣列的效果相同。description
- 建構子的可讀描述。descriptor
- 建構子的描述符。該參數可以為 null,它等效於一個空描述符。方法詳細資訊 |
---|
public Object clone()
返回此實例的淺表副本。可通過調用 super.clone() 來獲得該副本,因此要調用 Object.clone() 所實作的預設本機淺表複製機制。不進行任何內部欄位的更深層複製。
因為此類別是不可變的,所以主要對子類別進行複製。
Object
中的 clone
Cloneable
public MBeanParameterInfo[] getSignature()
返回此建構子的參數列表。每個參數都由一個 MBeanParameterInfo
物件來描述。
返回的陣列是內部陣列的一個淺表副本,這意味著它是對 MBeanParameterInfo
物件參考的一個內部陣列副本,但是未複製每個被參考的 MBeanParameterInfo
物件。
MBeanParameterInfo
物件的陣列。public String toString()
Object
複製的描述toString
方法會返回一個「以文本方式表示」此物件的字元串。結果應是一個簡明但易於讀懂的資訊表達式。建議所有子類別都覆寫此方法。
Object
類別的 toString
方法返回一個字元串,該字元串由類別名(物件是該類別的一個實例)、at 標記符“@
”和此物件雜湊碼的無符號十六進製表示組成。換句話說,該方法返回一個字元串,它的值等於:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Object
中的 toString
public boolean equals(Object o)
MBeanFeatureInfo
中的 equals
o
- 要比較的物件。
o
是一個 MBeanConstructorInfo,並且其 MBeanFeatureInfo.getName()
、MBeanFeatureInfo.getDescription()
、getSignature()
和 MBeanFeatureInfo.getDescriptor()
值與此 MBeanConstructorInfo 的這些值相等(不必完全一樣)時,才返回 true。如果兩個簽章陣列的元素是成對相等,則這兩個陣列相等。Object.hashCode()
,
Hashtable
public int hashCode()
Object
複製的描述java.util.Hashtable
提供的雜湊表)的性能。
hashCode
的常規協定是:
hashCode
方法都必須產生相同的整數結果。
Object.equals(java.lang.Object)
方法,兩個物件不相等,那麼對這兩個物件中的任一物件上調用 hashCode 方法不 要求一定產生不同的整數結果。但是,開發人員應該意識到,為不相等的物件產生不同整數結果可以提高雜湊表的性能。
實際上,由 Object 類別定義的 hashCode 方法確實會針對不同的物件返回不同的整數。(這一般是通過將該物件的內部位址轉換成一個整數來實作的,但是 JavaTM 程式語言不需要這種實作技巧。)
MBeanFeatureInfo
中的 hashCode
Object.equals(java.lang.Object)
,
Hashtable
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。