21

std::sort整数の配列をソートしようとして、グーグルした後、次のエラーを伴うを使用して解決策に出くわしましたnamespace "std" has no member "sort"

std名前空間を使用していないクォームを非難するために、ここに私のヘッダーがあります。

#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
using namespace std;
4

1 に答える 1

46

追加:

#include <algorithm>

std::sort()リファレンスページに記載されているように。

std名前空間の使用を参照してください。「名前空間stdの使用」が悪い習慣と見なされるのはなぜですか?およびSOに関する他の多くの質問について話し合いusing namespace std;ます。

于 2013-01-10T14:21:53.130 に答える