如何根据大小取消引用?

发布于 2024-09-27 22:07:07 字数 300 浏览 5 评论 0原文

我正在尝试打印地址指向的值,但问题是我需要根据传递给我的大小取消引用该指针。所以这样的事情:

void print(Address addr, Int size) {
...
}

我对如何实现这一目标有点困惑。有人能指出我正确的方向吗?

编辑: 好吧,我在想:

char p[80];
memset(p, '\0', 80);
memcpy(p, addr, size);

然后取消引用为 *p。如果有更好的方法或者正确的方法请告诉我

I am trying to print the value pointed to by an address but the problem is I need to dereference this pointer based on the size that is passed to me. So something of this sort:

void print(Address addr, Int size) {
...
}

I am a little confused on how to achieve this. Can someone point me in the right direction?

EDIT:
Ok so I'm thinking:

char p[80];
memset(p, '\0', 80);
memcpy(p, addr, size);

And then dereference as *p. If there is a better way or a correct way, please let me know

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

打小就很酷 2024-10-04 22:07:07

你的问题很不清楚。如果您的意思是要从传递的地址转储任意二进制数据,则需要类似以下内容:

void print(const unsigned char *addr, size_t size)
{
    while (size--) printf("%.2x", *addr++);
}

或者如果您的意思是要打印非空终止的字符数据,请尝试:

void print(const char *addr, int size)
{
    printf("%.*s", size, addr);
}

Your question is very unclear. If you mean you want to dump arbitrary binary data from the address passed, you want something like:

void print(const unsigned char *addr, size_t size)
{
    while (size--) printf("%.2x", *addr++);
}

Or if you mean you want to print character data that's not null-terminated, try:

void print(const char *addr, int size)
{
    printf("%.*s", size, addr);
}
九命猫 2024-10-04 22:07:07

如果它是一个数字(我认为是一个数字),那么您将需要这样的东西:

int n=0;
if (size>sizeof(int)) { return; //int is too small };
for (int i=0;i<size;i++) {
  ((char*)(&n))[sizeof(int)-(i+1)] = ((char*)addr)[size-(i+1)];
}
printf("%d",n);

If it is a number, which I assume it is, you will need something like this:

int n=0;
if (size>sizeof(int)) { return; //int is too small };
for (int i=0;i<size;i++) {
  ((char*)(&n))[sizeof(int)-(i+1)] = ((char*)addr)[size-(i+1)];
}
printf("%d",n);
↘人皮目录ツ 2024-10-04 22:07:07

您可以在例程中使用 switch 语句:(

switch (size) {
   case 1: print( *(char*)pointer); break;
   case 2: print( *(short*)pointer); break;
   case 4: print( *(long *)pointer); break;
   case 8: print( *(__int64*)pointer); break;
   default: puts( "unsupported);
}

“print”是打印各种大小的整数的例程,可能使用 C++ 多态性)

复杂的解决方案是使用 C++ 模板,例如使用参数类型 Integer 在调用时被实际变量类型替换。然后,此例程可能会作用于此 Integer 变量的大小(可能会在 1 到 8 之间变化,如果您自己实现更长的整数,则可能会更大)。这种方法的缺点是编译器为每种类型的参数生成一个例程实例,并且依赖于大小的逻辑将导致某些测试的“始终为真”条件。一个简单的方法是始终使用您期望的最长整数类型。

You may use a switch statement in the routine:

switch (size) {
   case 1: print( *(char*)pointer); break;
   case 2: print( *(short*)pointer); break;
   case 4: print( *(long *)pointer); break;
   case 8: print( *(__int64*)pointer); break;
   default: puts( "unsupported);
}

("print" is a routine to print integers of various sizes, perhaps using C++ polymorphism)

A sophisticated solution is to use a C++ template e.g. using a parameter type Integer which is subsituted by the actual variable type upon invocation. This routine may then act on the size of this Integer variable (which may vary from 1 to 8, or more if you implement longer integers yourself). This disadvantage of this approach is that the compiler generates a routine instance for every type of argument, and logic dependent on the size will lead to "always true" conditions for some tests. An easy way out is to use always the longest type of integer you'd expect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文