gpt4 book ai didi

c++ - 如何在 Visual Studio 2013 上使用 STLSoft 库?

转载 作者:行者123 更新时间:2023-11-28 07:01:15 24 4
gpt4 key购买 nike

我正在按照这篇文章的安装步骤进行操作:http://binglongx.wordpress.com/2010/08/30/stlsoft-installation/

我是这样设置的(因为我没有D盘):

  1. 解压文件到C:\
  2. 右键单击项目 -> 属性 -> 调试 -> 环境:PATH=%PATH%;C:\STLsoft-1.9.117;
  3. 属性 -> VC++ 目录 -> 包含目录:C:\STLsoft-1.9.117\include

但是,当我运行帖子中的示例代码时,它会输出:错误 LNK1561:必须定义入口点

有人知道我错在哪里吗?

最佳答案

该应用程序需要一个 main 函数作为其入口点,并且博文中的示例不完整。试试这个:

#include <stlsoft/conversion/integer_to_string.hpp>
#include <string>
#include <iostream>

std::string int2string(int i)
{
char buf[30]; // 29 digits, enough for longest integer, even 64-bit
const char* s = stlsoft::integer_to_string(buf, i);
return std::string(s);
}

int main (int argc, char* argv[]{
std::cout << int2string(5) << std::endl;
return 0;
}

关于c++ - 如何在 Visual Studio 2013 上使用 STLSoft 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22436175/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com