Double belegt Bytes: 1. Unter einem 16-Bit-Compiler belegt Double 8 Bytes; 2. Unter einem 32-Bit-Compiler belegt Double 8 Bytes; 3. Unter einem 64-Bit-Compiler belegt Double 8 Bytes.
Die Betriebsumgebung dieses Artikels: Windows 10-System, Thinkpad T480-Computer. Von
double belegte Bytes:
1. 16-Bit-Compiler
char: 1 Byte
char* (d. h. Zeigervariable): 2 Bytes
short int: 2 Bytes
int: 2 Bytes
unsigned int: 2 Bytes
float: 4 Bytes
double: 8 Bytes
long: 4 Bytes
lang lang: 8 Bytes
unsigned long: 4 Bytes
2, 32-Bit-Compiler
char: 1 Byte
char* (d. h. Zeigervariable): 4 Bytes (der 32-Bit-Compiler) bisschen Der Adressraum beträgt 2^32, also 32 Bit, also 4 Byte. Das Gleiche gilt für 64-Bit-Compiler.) 4 Bytes: float: 4 Bytes: 8 Bytes: 8 Bytes: 4 Bytes: 8 Bytes: 8 Bytes ed lang: 4 Bytes
double: 8 Bytes
long: 8 Bytes
Wenn Sie mehr über das Programmieren erfahren möchten, achten Sie bitte auf die Rubrik „PHP-Schulung“!
Das obige ist der detaillierte Inhalt vonWie viele Bytes belegt Double?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!