リスト内の各映画のタイトルを上書きしたい。
静的で最終的なものにしようとしましx
たが、コンパイラが文句を言います。
List<Movie> mList = new ArrayList<Movie>();
for(int i = 0; i < 5; i++)
{
int x;
mList.add(new Movie(){
toString(){
// need an easy way to give a unique string to each movie here.
return "Movie" + x;
}
}
}