2010-12-28から1日間の記事一覧

暗黙の型変換のトラブル

暗黙の型変換は便利ですが、ちょっと理解が足りないと原因特定がめんどうな困ったチャンです。 #include <iostream> #include <string> void function(const bool arg){ std::cout << "boolean: " << arg << std::endl; } void function(const std::string &arg){ std::cout <<</string></iostream>…