c_cpp void *指针的转换问题,这里C和C ++有差别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp void *指针的转换问题,这里C和C ++有差别相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;

void* pvoid;
int* pint;
int* pint2;

int main() {
	int a = 5;
	
	pint = &a;
	cout << a << '\t' << pint << '\t' << *pint << endl;
	
	pvoid = pint;
	pint2 = (int*) pvoid;
	cout << a << '\t' << pint2 << '\t' << *pint2 << endl;
	
	
	// your code goes here
	return 0;
}

以上是关于c_cpp void *指针的转换问题,这里C和C ++有差别的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp c中的void指针练习

c_cpp 在c中使用void指针数组的一些练习

c_cpp 来自void指针的hash数据

c_cpp 允许通过C中的void指针从任何类型访问字节数组

c# 调用c dll void 指针类型转化问题

如何在 C 中将 void 指针转换为 char 指针