本文介绍了int32到native int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 可以这样做吗?有没有办法去除别名? int数据类型所以我可以 将一个int传递给一个C方法?? PaulCan this be done? Is there a way to "de-alias" the int datatype so I canpass an int into a C method??Paul推荐答案 你传递给SXInit的是什么?这个程序运行正常: //编译:cl / W4 / clr a.cpp #using< mscorlib.dll> 使用命名空间系统; #include< stdio.h> int main() { int x = 2; printf("%d \ n",x); } - Doug Harrison Microsoft MVP - Visual C ++What are you passing to SXInit? This program works OK:// Compile with: cl /W4 /clr a.cpp#using <mscorlib.dll>using namespace System;#include <stdio.h>int main(){int x = 2;printf("%d\n", x);}--Doug HarrisonMicrosoft MVP - Visual C++ 这篇关于int32到native int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-29 11:39