Discussion 議論
Obtains the actual size and the aligned size of the first data type represented by type
and returns a pointer to the position of the next data type in type
. You can specify NULL
for either sizep
or alignp
to ignore the corresponding information.
type
によって表される最初のデータ型の実際のサイズとアラインされたサイズを獲得します、そしてtype
の中の次のデータ型の位置へのポインタを返します。あなたは、NULL
をsizep
またはalignp
のどちらかに指定することで、対応する情報を無視できます。
The value returned in alignp
is the aligned size of the data type; for example, on some platforms, the aligned size of a char
might be 2 bytes while the actual physical size is 1 byte.
alignp
で返される値は、データ型のアラインされるサイズです;例えば、いくつかのプラットホーム上で、char
のアラインされるサイズは2バイト、一方で実際の物理サイズは1バイトかもしれません。