Inhaltsverzeichnis

offsetof()

#include <cstddef>

size_t offsetof (typ, komponente) 

Liefert den Abstand der Komponente von der Speicheradresse einer Struktur typ.

Parameter

typ ein struct-Datentyp
komponente Name einer Komponente von typ

Ergebnis

Rückgabewert: Versatz von Anfangsadresse in Byte.

Siehe auch

-

Beispiel

offset_of.cpp
#include <cstddef>
#include <ctime>
#include <iostream>
 
int main()
{
  using namespace std;
  cout << offsetof(tm, tm_wday) << '\n';
}