ここでは一例です:私はこのプログラムをコンパイルしようとしたとき #include <string>
#include <algorithm>
#include <memory>
using std::string;
int main()
{
string str = "This is a string";
// ok: needn't using declar
なぜB :: fはあいまいさを解決しませんが、A :: fはしませんか? namespace A
{
class X { };
void f(X);
}
namespace B
{
void f(A::X);
void g(A::X x)
{
using B::f; // which expression shall I us
のために範囲ベースこれは、2011年からこの質問への拡張である:Visual Studioの2015を使用して Range-based for loops and ADL 、私は引数を使用してカスタムコンテナの範囲ベースのforループを作ることができないんだけど依存ルックアップ(ADL)。私はカスタムコンテナで以下の非常に簡単なテストケースを作った : #include <vector>
na