可以。
很简单的,你自己试试就可以。[C++] 纯文本查看 复制代码 #include <iostream>
#include <string>
#include <string.h>
using namespace std;
double doctor(const char* ch){
cout << "doctor(const char* ch): " << ch << endl;
return 0.0;
}
double doctor(const string ch){
cout << "doctor(const string ch): " << ch << endl;
return 0.0;
}
int main()
{
cout << "Hello World\n";
const string s = "aaaaaa";
const char szA[] = "bbbbbb";
doctor(s);
doctor(szA);
return 0;
}
output:
Hello World
doctor(const string ch): aaaaaa
doctor(const char* ch): bbbbbb
|