I have this main.cpp:
我有这个main.cpp:
std::string hw[] = { "Hello", "World" };
const array_appender<std::string> ha( hw, sizeof( hw ) / sizeof( hw[ 0 ] ) );
if ( /*with some other conditions*/ &( ha.at( 0 ) ) == hw )
{
//some other stuff
}
std::st