Overview
概要
The NSHost
class provides methods to access the network name and address information for a host. Instances of the NSHost
class represent individual hosts on a network.
NSHost
クラスは、あるホストのネットワークの名前およびアドレス情報にアクセスするためのメソッドを提供します。NSHost
クラスのインスタンスは、あるネットワーク上の個々のホストを表します。
Use NSHost
objects to get the current host’s names and addresses and to look up other hosts by name or by address.
To create an NSHost
object, use the currentHost
, hostWithAddress:
, or hostWithName:
class methods (don’t use alloc
and init
). These methods use available network administration services to discover all names and addresses for the host requested. They don’t attempt to contact the host itself, however. This approach avoids untimely delays due to a host being unavailable, but it may result in incomplete information about the host.
NSHost
オブジェクトを作成するには、currentHost
、hostWithAddress:
、またはhostWithName:
クラスメソッドを使ってください(alloc
とinit
を使わないでください)。これらのメソッドは、利用可能なネットワーク管理サービスを使って、要請されたホストに対する全ての名前とアドレスを発見します。それらは、しかしながら、ホストそれ自体に接触を試みません。この取り組み方は、時期悪くホストが利用可能でないことが原因の遅滞を防ぎます、しかしそれはホストについての不完全な情報という結果になるかもしれません。
An NSHost
object contains all of the network addresses and names discovered for a given host by the network administration services. Each NSHost
object may contain several addresses and have more than one name. If an NSHost
object has more than one name, the additional names are variations on the same name, typically the basic host name plus the fully qualified domain name. For example, with a host name "sales"
in the domain "anycorp.com"
, an NSHost
object can hold both the names "sales"
and "sales.anycorp.com"
.
NSHost
オブジェクトは、ネットワーク管理サービスによって、指定ホストに対して発見されたネットワークのアドレスおよび名前の全てを含みます。各NSHost
オブジェクトは、いくつかのアドレスを含み、そして複数の名前を持つかもしれません。NSHost
オブジェクトが複数の名前を持つならば、追加の名前は同じ名前の変形版です、概して基本ホスト名に完全修飾ドメイン名を足したもの。例えば、ホスト名"sales"
はドメイン"anycorp.com"
において、あるNSHost
オブジェクトが名前"sales"
と"sales.anycorp.com"
の両方を持つことができます。
NSHost
methods are thread-safe.
NSHost
メソッドは、スレッド安全です。