Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/powershell/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Sdk 它的确切含义是什么;这是一个';在线';格式结构;?_Sdk_Coding Style_Comments - Fatal编程技术网

Sdk 它的确切含义是什么;这是一个';在线';格式结构;?

Sdk 它的确切含义是什么;这是一个';在线';格式结构;?,sdk,coding-style,comments,Sdk,Coding Style,Comments,以下代码摘自Windows SDK中的in6addr.h: // // IPv6 Internet address (RFC 2553) // This is an 'on-wire' format structure. // typedef struct in6_addr { union { UCHAR Byte[16]; USHORT Word[8]; } u; } IN6_ADDR, *PIN6_ADDR, FAR *L

以下代码摘自Windows SDK中的in6addr.h:

//
// IPv6 Internet address (RFC 2553)
// This is an 'on-wire' format structure.
//
typedef struct in6_addr {
    union {
        UCHAR       Byte[16];
        USHORT      Word[8];
    } u;
} IN6_ADDR, *PIN6_ADDR, FAR *LPIN6_ADDR;
我不是以英语为母语的开发者。所以请原谅我问了一个愚蠢的问题:


“这是一种“有线格式结构”的确切含义是什么?

这意味着它描述了信息在传输时的样子