如何解决“无法转换3个参数”?

时间:2019-07-16 12:42:32

标签: c++ windows hyperlink

所以,我有这段代码。它应该可以正常工作,并且可以在我至少看到的几个视频中工作。我在Visual Studio上,我试图让用户输入一个链接,它会转到google chorme并转到您键入的链接。

我尝试从url中删除内容,例如url.c_str,没有任何功能。

#include <iostream>
#include <windows.h>
#include <string>
using namespace std;
void fileopen(string url);
int main()
{
    string url;
    cout << "put the url";
    cin >> url;
    fileopen(url);
}
void fileopen(string url)
{

    ShellExecute(NULL, L"open", url.c_str(), NULL, NULL, SW_SHOWNORMAL);
}

这些是错误消息:http://prntscr.com/ofrpf2

0 个答案:

没有答案