Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在stackoverflow上用谷歌搜索并搜索了这个,但结果是关于如何使用指针的。对不起,如果我的问题是nooby,我当时正在学习c。
但是 C/C++ 指针是否会在程序执行期间保存用户输入,因为它们是在内存中寻址的?
编辑2:
C/C++ 指针会在程序执行后保存用户输入吗?
指针只是包含内存地址的整数。而已。所以指针本身并不保存用户数据。但是,指针可以指向class/的实例,struct它本身可以保存用户数据。
class
struct