私は次のようないくつかのC++コードに取り組んでいました:
//c++ code
class MovieInfo;
MovieInfo getMovieInfoByName(String movieName)
{
//search the movieInfoList with movieName
if(FOUND)
return movieInfo;
//TODO: **what should i return if the movieInfo can't be found in the list?**
}
問題は、movieInfo がリストに見つからない場合、何を返す必要があるかということです。