Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C 内存地址


内存地址

在 C 中创建变量时,会为该变量分配一个内存地址。

内存地址是变量在计算机上存储的位置。

当我们为变量赋值时,该值将存储在这个内存地址中。

要访问它,请使用引用运算符 (&),结果表示变量存储的位置

示例

int myAge = 43;
printf("%p", &myAge); // 输出 0x7ffe5367e044
自己试试 »

注意: 内存地址以十六进制形式表示 (0x..)。您在程序中可能不会得到相同的结果,因为这取决于变量在计算机上的存储位置。

您还应该注意,&myAge 通常称为“指针”。指针本质上将变量的内存地址存储为其值。要打印指针值,我们使用 %p 格式说明符。

您将在下一章中学习更多关于 指针 的知识。

为什么了解内存地址很有用?

指针 在 C 中很重要,因为它们允许我们操作计算机内存中的数据——这可以减少代码量并提高性能

指针是使 C 语言区别于其他编程语言(如 PythonJava)的原因之一。


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.