C++ - Get value of a particular memory address(C++ - 获取特定内存地址的值)
问题描述
我想知道是否可以做这样的事情:
I was wondering whether it is possible to do something like this:
unsigned int address = 0x0001FBDC; // Random address :P
int value = *address; // Dereference of address
意思是,是否可以获取内存中特定地址的值?
Meaning, is it possible to get the value of a particular address in memory ?
谢谢
推荐答案
你可以而且应该这样写:
You can and should write it like this:
#include <cstdint>
uintptr_t p = 0x0001FBDC;
int value = *reinterpret_cast<int *>(p);
请注意,除非有某种保证 p
指向整数,否则这是未定义的行为.如果您尝试访问它不希望您访问的地址,则标准操作系统将终止您的进程.但是,这可能是独立程序中的常见模式.
Note that unless there is some guarantee that p
points to an integer, this is undefined behaviour. A standard operating system will kill your process if you try to access an address that it didn't expect you to address. However, this may be a common pattern in free-standing programs.
(早期版本的 C++ 应该说 #include
和 intptr_t
.)
(Earlier versions of C++ should say #include <stdint.h>
and intptr_t
.)
这篇关于C++ - 获取特定内存地址的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ - 获取特定内存地址的值
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01