发布网友 发布时间:2022-04-24 02:08
共2个回答
热心网友 时间:2023-10-21 00:48
C++ 有字符串吗?
你只有 char * 可以用。
热心网友 时间:2023-10-21 00:49
可以呀~! 函数是通值传递来时现的,而字符串它也是值,所以说是可以的.
#include<iostream.h>
int sun(string &s)
{
cout<<s;
return 1;
}
void main()
{
string *p;
p="asdf";
sun(*p);
}
热心网友 时间:2023-10-21 00:48
C++ 有字符串吗?
你只有 char * 可以用。
热心网友 时间:2023-10-21 00:49
可以呀~! 函数是通值传递来时现的,而字符串它也是值,所以说是可以的.
#include<iostream.h>
int sun(string &s)
{
cout<<s;
return 1;
}
void main()
{
string *p;
p="asdf";
sun(*p);
}
热心网友 时间:2023-10-21 00:48
C++ 有字符串吗?
你只有 char * 可以用。
热心网友 时间:2023-10-21 00:49
可以呀~! 函数是通值传递来时现的,而字符串它也是值,所以说是可以的.
#include<iostream.h>
int sun(string &s)
{
cout<<s;
return 1;
}
void main()
{
string *p;
p="asdf";
sun(*p);
}
热心网友 时间:2023-10-21 00:49
C++ 有字符串吗?
你只有 char * 可以用。
热心网友 时间:2023-10-21 00:49
可以呀~! 函数是通值传递来时现的,而字符串它也是值,所以说是可以的.
#include<iostream.h>
int sun(string &s)
{
cout<<s;
return 1;
}
void main()
{
string *p;
p="asdf";
sun(*p);
}