
C
亚林瓜子
这个作者很懒,什么都没留下…
展开
-
C语言创建链表malloc的使用(C的创建对象)
struct student *creat() { struct student *head; struct student *p1, *p2; p1 = p2 = (struct student *)malloc(LEN); //LEN是student结构的大小 这就是new对象 printf("Please enter the num :"); scanf("%d", &p1->转载 2012-09-10 21:19:59 · 4441 阅读 · 1 评论 -
asp.net调用C++的dll
方法(1)把非托管的*.dll放到C:\WINDOWS\system32目录下 方法(2)用委托,反射可以解决这个问题,不过比较复杂。这里给一个利用调用Win32,API来加载非托管的dll [DllImport("kernel32.dll", EntryPoint = "LoadLibrary")] public static extern IntPtr LoadLi转载 2013-01-09 15:25:25 · 4528 阅读 · 0 评论