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
// windows_21_Library_Class_DLL_USE.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
//导入DLL文件
#pragma comment(lib,"../bin/windows_21_Library_Class_DLL.lib")
//需要声明一个类的定义,还需要导入类__declspec( dllimport )
class __declspec( dllimport )CMath
{
public:
int Add( int nAdd1, int nAdd2 );
int Sub( int nSub1, int nSub2 );
};
int _tmain(int argc, _TCHAR* argv[])
{
//使用类
CMath math;
int nAdd = math.Add( 100, 100 );
int nSub = math.Sub( 100, 100 );
printf( "nAdd:%d\nnSub:%d\n", nAdd, nSub );
return 0;
}
以上是关于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 为空,无法引用”