GCKNetworkAddress クラス
ネットワーク IP アドレスを表すオブジェクト。
このオブジェクトは変更できません。
- 開始:
- 4.2
NSObject、<NSCopying>、<NSSecureCoding> を継承します。
- (instancetype) initWithType: |
|
(GCKNetworkAddressType) |
type |
ipAddress: |
|
(nullable NSString *) |
ipAddress |
|
|
| |
指定されたアドレスタイプと IP アドレスで GCKNetworkAddress を作成します。
- Parameters
-
type | The address type. |
ipAddress | The IP address, in textual form. May be nil to indicate the wildcard ("any") address. |
- (instancetype) initWithType: |
|
(GCKNetworkAddressType) |
type |
addressData: |
|
(nullable NSData *) |
addressData |
|
|
| |
指定された住所タイプと未加工の住所で GCKNetworkAddress を作成します。
- Parameters
-
type | The address type. |
addressData | An NSData object containing the appropriate address structure (e.g., struct in_addr or struct in6_addr). For the GCKNNetworkAddressTypeIPC, the data is expected to be a UTF8 encoding. |
指定された型のワイルドカード アドレスを作成します。
指定された型のループバック アドレスを作成します。
IPv4 ブロードキャスト アドレスを作成します。
- (GCKNetworkAddressType) type |
|
readnonatomicassign |
適切なアドレス構造(struct in_addr や struct in6_addr など)を含む NSData としてのネットワーク アドレス。
アドレス タイプが IPC の場合、このフィールドは UTF8 エンコードです。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-12-02 UTC。
[null,null,["最終更新日 2023-12-02 UTC。"],[[["The `GCKNetworkAddress` class represents a network IP address and is immutable."],["It provides methods to construct network addresses of various types, including IPv4, IPv6, and IPC."],["You can obtain the address type, IP address string, and raw address data from instances of this class."],["The default initializer is not allowed; you must use designated initializers to create instances."]]],[]]