⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jclient.cpp

📁 经验交流,从网上下载的好东西望大家分享
💻 CPP
字号:
// jclient.cpp
#import "c:\Inside COM+ Base Services\Language Integration\JavaSum\JavaSum.dll" no_namespace
#import "c:\Inside COM+ Base Services\Language Integration\component\debug\component.dll" no_namespace
#include <iostream.h>

void main()
{
	CoInitialize(NULL);
	ISumPtr myRef(__uuidof(SumClass));
	int result = myRef->Sum(5, 13);
	cout << "5 + 13 = " << result << endl;
	myRef = NULL;
	CoUninitialize();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -