21.2 windows_21_Library_Class_DLL_USE 动态库补充2

Posted 养老保险年审

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了21.2 windows_21_Library_Class_DLL_USE 动态库补充2相关的知识,希望对你有一定的参考价值。

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. }





以上是关于21.2 windows_21_Library_Class_DLL_USE 动态库补充2的主要内容,如果未能解决你的问题,请参考以下文章

参考手册目录__第一部分

在 scikit-learn 版本 0.21.2 的 OneHotEncoder 中使用 active_features_ 和 feature_indices_

21.2 memcached介绍;21.2 memcached介绍;21.3 安装memcached

Kubernetes v1.21.2:“selfLink 为空,无法引用”

21window_21_Dynamic_library动态库

21.7 windows_21_Library_Variable_DLL_USE 动态库补充7