程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> namespace-std命令空間問題,不包含strlen

namespace-std命令空間問題,不包含strlen

編輯:編程綜合問答
std命令空間問題,不包含strlen
 #include<iostream>
#include<cstring>

int main()
{   
    std::cout<<std::strlen("puzzled")<<std::endl;
    return 0;
}

編譯器報錯:'strlen' : is not a member of 'std'
但當導入整個命名空間後又可以(using namespace std)

 #include<iostream>
#include<cstring>
using namespace std;
int main()
{

    cout<<strlen("puzzled")<<endl;
    return 0;
}

1.什麼原因呢,為什麼使用std::strlen都無效呢?
2.另外想問一下,#include包含語句是怎樣將C庫的變量導入到std中的?

最佳回答:


C++中的#include就等價於C中的#include

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved