上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 107 下一页

2005年12月30日

用C++编写的基于双向链表的CPtrArray类

摘要: http://www.zahui.com/html/9/36475.htm用过VC的人可能都用过其中各种各样的Array类,在我也常用到,这让我编写程序方便了很多。 做电力自动化的同行可能都知道,咱这行兴组态这个方法,不管理是做什么软件,都要组态一把,呵呵,说来笑话,直到今天我也没有真正的找到组态这一个词的明确解释。我一直把它理解为“不需要程序员修改程序,调试人员或用户就可以完成新的系统监... 阅读全文

posted @ 2005-12-30 19:11 cy163 阅读(1494) 评论(0) 推荐(0) 编辑

2005年12月29日

C++(new and malloc0

摘要: http://www.programfan.com/club/showbbs.asp?id=1280976楼说的没错对于象int,char,float这一类的基本数据类型和只含成员变量的结构体来说,用new和malloc()是一样的,对应的delete和free()也是一样的.而对于类则不一样,new操作先申请内存,然后还要调用类的构造函数,而malloc()只是申请一块内存而已,对应的d... 阅读全文

posted @ 2005-12-29 21:50 cy163 阅读(419) 评论(0) 推荐(0) 编辑

2005年12月28日

13G编程电子书开始提供BT下载

摘要: http://blog.csdn.net/yiyuan/archive/2005/10/16/504747.aspxhttp://search.btchina.net/search.php?query=yiyuan&type=1 阅读全文

posted @ 2005-12-28 23:22 cy163 阅读(1130) 评论(1) 推荐(0) 编辑

习语

摘要: 1. Thanks a bunch. That works and in fact now that you explained it, its starting to come back to me. 2. I have tripple checked 3. have one slight problem left though 阅读全文

posted @ 2005-12-28 23:01 cy163 阅读(212) 评论(0) 推荐(0) 编辑

如何修改Window系统下PATH路径

摘要: 原因是因为“环境变量”的问题,原本的Path=C:\WINDOWS\system32;C:\WINDOWS;……,其中再加一个“E:\JBuilder2005\jdk1.4\bin;”即可,方法如下:cmd——set path (查看你的path变量)——set path=E:\JBuilder2005\jdk1.4\bin;%path%,即可修改path。或者在系统属性——高级——环境变量。再试... 阅读全文

posted @ 2005-12-28 22:12 cy163 阅读(10104) 评论(0) 推荐(0) 编辑

2005年12月22日

Problem in calling C++ dll from C# Code

摘要: Hi!I am calling a C++ dll function from my C# code . but facing the problem in a function called inside that C++ function.That's how I'm referring to the C++ dll function inside my C# class : Code: c... 阅读全文

posted @ 2005-12-22 23:59 cy163 阅读(608) 评论(0) 推荐(0) 编辑

How to create a DLL library in C and then use it with C#

摘要: http://www.codeproject.com/csharp/UseCDLLlibinCS.asp Introduction After spending some time trying to implement this simple task, I started to search similar code examples over the Internet. I was real... 阅读全文

posted @ 2005-12-22 00:14 cy163 阅读(571) 评论(0) 推荐(0) 编辑

C#调用DLL文件时参数对应表

摘要: http://www.njpro.cn/8918/ShowPost.aspx Wtypes.h 中的非托管类型 非托管 C 语言类型 托管类名 说明 HANDLE void* System.IntPtr 32 位 BYTE unsigned char System.Byte 8 位 SHORT short System.Int16 16 位 WORD unsigned short S... 阅读全文

posted @ 2005-12-22 00:06 cy163 阅读(671) 评论(0) 推荐(0) 编辑

如何在C#中加载自己编写的动态链接库(DLL)

摘要: 如何在C#中加载自己编写的动态链接库(DLL) 作者:李伟华 来源:csdn 摘要 本文主要讲述如何在C#中逐步实现加载自己用C++语言编写的动态链接库,以及在导入时如何进行C#和C++语言的数据类型匹配 关键词 C# C++ 动态链接库 加载 数据类型匹配 一、发生的背景 在开发新项目中使用了新的语言开发C#和新的技术方案WEB S... 阅读全文

posted @ 2005-12-22 00:01 cy163 阅读(829) 评论(0) 推荐(0) 编辑

2005年12月21日

Dynamic load of a c++ dll in C#?http://www.codecomments.com/archive290-2004-7-216328.html

摘要: http://www.codecomments.com/archive290-2004-7-216328.htmlAuthor Dynamic load of a c++ dll in C#? http://www.codecomments.com/archive290-2004-7-216328.html lallous 2004-06-16, 8:57 am ... 阅读全文

posted @ 2005-12-21 23:55 cy163 阅读(1103) 评论(0) 推荐(0) 编辑

上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 107 下一页

导航