// 12判断string类型字符串是否为空
/*#include <iostream>
#include <string>
using namespace std;
int main()
{
	string s1 = "";
	if(s1.empty()){
	    cout<<"s1为空"<<endl;
	}else{
	    cout<<"s1不为空:"<<s1<<endl;
	}

    return 0;	 
*/

  

相关文章:

  • 2022-02-04
  • 2021-05-31
  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-17
  • 2021-12-04
  • 2021-12-04
  • 2021-12-04
  • 2022-01-01
  • 2021-12-04
  • 2022-02-21
相关资源
相似解决方案