⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qhostaddress.3qt

📁 Trolltech公司发布的基于C++图形开发环境
💻 3QT
字号:
'\" t.TH QHostAddress 3qt "21 January 2005" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQHostAddress \- IP address.SH SYNOPSIS\fC#include <qhostaddress.h>\fR.PP.SS "Public Members".in +1c.ti -1c.BI "\fBQHostAddress\fR ()".br.ti -1c.BI "\fBQHostAddress\fR ( Q_UINT32 ip4Addr )".br.ti -1c.BI "\fBQHostAddress\fR ( Q_UINT8 * ip6Addr )".br.ti -1c.BI "\fBQHostAddress\fR ( const Q_IPV6ADDR & ip6Addr )".br.ti -1c.BI "\fBQHostAddress\fR ( const QHostAddress & address )".br.ti -1c.BI "virtual \fB~QHostAddress\fR ()".br.ti -1c.BI "QHostAddress & \fBoperator=\fR ( const QHostAddress & address )".br.ti -1c.BI "void \fBsetAddress\fR ( Q_UINT32 ip4Addr )".br.ti -1c.BI "void \fBsetAddress\fR ( Q_UINT8 * ip6Addr )".br.ti -1c.BI "bool \fBsetAddress\fR ( const QString & address )".br.ti -1c.BI "bool isIp4Addr () const  \fI(obsolete)\fR".br.ti -1c.BI "Q_UINT32 ip4Addr () const  \fI(obsolete)\fR".br.ti -1c.BI "bool \fBisIPv4Address\fR () const".br.ti -1c.BI "Q_UINT32 \fBtoIPv4Address\fR () const".br.ti -1c.BI "bool \fBisIPv6Address\fR () const".br.ti -1c.BI "Q_IPV6ADDR \fBtoIPv6Address\fR () const".br.ti -1c.BI "QString \fBtoString\fR () const".br.ti -1c.BI "bool \fBoperator==\fR ( const QHostAddress & other ) const".br.ti -1c.BI "bool \fBisNull\fR () const".br.in -1c.SH DESCRIPTIONThe QHostAddress class provides an IP address..PPThis class contains an IP address in a platform and protocol independent manner. It stores both IPv4 and IPv6 addresses in a way that you can easily access on any platform..PPQHostAddress is normally used with the classes QSocket, QServerSocket and QSocketDevice to set up a server or to connect to a host..PPHost addresses may be set with setAddress() and retrieved with ip4Addr() or toString()..PPSee also QSocket, QServerSocket, QSocketDevice, and Input/Output and Networking..SH MEMBER FUNCTION DOCUMENTATION.SH "QHostAddress::QHostAddress ()"Creates a host address object with the IP address 0.0.0.0..SH "QHostAddress::QHostAddress ( Q_UINT32 ip4Addr )"Creates a host address object for the IPv4 address \fIip4Addr\fR..SH "QHostAddress::QHostAddress ( Q_UINT8 * ip6Addr )"Creates a host address object with the specified IPv6 address..PP\fIip6Addr\fR must be a 16 byte array in network byte order (high-order byte first)..SH "QHostAddress::QHostAddress ( const Q_IPV6ADDR & ip6Addr )"Creates a host address object with the IPv6 address, \fIip6Addr\fR..SH "QHostAddress::QHostAddress ( const QHostAddress & address )"Creates a copy of \fIaddress\fR..SH "QHostAddress::~QHostAddress ()\fC [virtual]\fR"Destroys the host address object..SH "Q_UINT32 QHostAddress::ip4Addr () const"\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code..PPUse toIPv4Address() instead..SH "bool QHostAddress::isIPv4Address () const"Returns TRUE if the host address represents an IPv4 address; otherwise returns FALSE..SH "bool QHostAddress::isIPv6Address () const"Returns TRUE if the host address represents an IPv6 address; otherwise returns FALSE..SH "bool QHostAddress::isIp4Addr () const"\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code..PPUse isIPv4Address() instead..SH "bool QHostAddress::isNull () const"Returns TRUE if this host address is null (INADDR_ANY or in6addr_any). The default constructor creates a null address, and that address isn't valid for any particular host or interface..SH "QHostAddress & QHostAddress::operator= ( const QHostAddress & address )"Assigns another host address object \fIaddress\fR to this object and returns a reference to this object..SH "bool QHostAddress::operator== ( const QHostAddress & other ) const"Returns TRUE if this host address is the same as \fIother\fR; otherwise returns FALSE..SH "void QHostAddress::setAddress ( Q_UINT32 ip4Addr )"Set the IPv4 address specified by \fIip4Addr\fR..SH "void QHostAddress::setAddress ( Q_UINT8 * ip6Addr )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPSet the IPv6 address specified by \fIip6Addr\fR..PP\fIip6Addr\fR must be a 16 byte array in network byte order (high-order byte first)..SH "bool QHostAddress::setAddress ( const QString & address )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPSets the IPv4 or IPv6 address specified by the string representation \fIaddress\fR (e.g. "127.0.0.1"). Returns TRUE and sets the address if the address was successfully parsed; otherwise returns FALSE and leaves the address unchanged..SH "Q_UINT32 QHostAddress::toIPv4Address () const"Returns the IPv4 address as a number..PPFor example, if the address is 127.0.0.1, the returned value is 2130706433 (i.e. 0x7f000001)..PPThis value is only valid when isIp4Addr() returns TRUE..PPSee also toString()..SH "Q_IPV6ADDR QHostAddress::toIPv6Address () const"Returns the IPv6 address as a Q_IPV6ADDR structure. The structure consists of 16 unsigned characters..PP.nf.br        Q_IPV6ADDR addr = hostAddr.ip6Addr();.br        // addr.c[] contains 16 unsigned characters.br.br        for (int i = 0; i < 16; ++i) {.br            // process addr.c[i].br        }.br.fi.PPThis value is only valid when isIPv6Address() returns TRUE..PPSee also toString()..SH "QString QHostAddress::toString () const"Returns the address as a string..PPFor example, if the address is the IPv4 address 127.0.0.1, the returned string is "127.0.0.1"..PPSee also ip4Addr()..SH "SEE ALSO".BR http://doc.trolltech.com/qhostaddress.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qhostaddress.3qt) and the Qtversion (3.3.4).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -