博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
21.2 windows_21_Library_Class_DLL_USE 动态库补充2
阅读量:5839 次
发布时间:2019-06-18

本文共 578 字,大约阅读时间需要 1 分钟。

windows_21_Library_Class_DLL_USE 动态库补充2

 
  1. // windows_21_Library_Class_DLL_USE.cpp : 定义控制台应用程序的入口点。
  2. //
  3. #include "stdafx.h"
  4. //导入DLL文件
  5. #pragma comment(lib,"../bin/windows_21_Library_Class_DLL.lib")
  6. //需要声明一个类的定义,还需要导入类__declspec( dllimport )
  7. class __declspec( dllimport )CMath
  8. {
  9. public:
  10. int Add( int nAdd1, int nAdd2 );
  11. int Sub( int nSub1, int nSub2 );
  12. };
  13. int _tmain(int argc, _TCHAR* argv[])
  14. {
  15. //使用类
  16. CMath math;
  17. int nAdd = math.Add( 100, 100 );
  18. int nSub = math.Sub( 100, 100 );
  19. printf( "nAdd:%d\nnSub:%d\n", nAdd, nSub );
  20. return 0;
  21. }

转载于:https://www.cnblogs.com/nfking/p/5573266.html

你可能感兴趣的文章
hadoop研究
查看>>
我的友情链接
查看>>
oracle 数据批量导出工具
查看>>
Nginx网站服务+LNMP架构及应用部署
查看>>
MySQL索引原理及慢查询优化
查看>>
Win 2003安全检测 让***者无处可藏
查看>>
grep正则表达式及扩展表达式
查看>>
HQWEB项目的问题和解释
查看>>
Excel表格模板:教育科研事业清资报表下载
查看>>
PWE3故障处理流程
查看>>
程序员的发展方向有哪些
查看>>
站在源码的角度全解Scroller工作机制(一)
查看>>
Ffmpeg使用语法
查看>>
java安全管理器(Security Manager)
查看>>
设计模式——什么是设计模式
查看>>
HTML标记语言——表格的基本结构
查看>>
用命令查看整个AD域用户目前正在登录的计算机名
查看>>
Apache Lucene全文检索
查看>>
Google 利用 AI 来锐利化低像素相片
查看>>
CentOS 6.5 x64安装ELK日志分析系统
查看>>