Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java7以降、配列リストの明示的な指定は悪い習慣と見なされていますか? このバージョンから不要になったのはなぜですか?
List<String> foo = new Arraylist<String>(); // before List<String> bar = new Arraylist<>(); // from Java7
リストで定義されているからですか?ありがとう!