Java error code?
What do开发者_如何学运维es error: ArrayList cannot be resolved to a type
mean in dr java?
You probably need to add the line
import java.util.ArrayList;
To your source file. Post the code to be sure.
It usually means you have forgotten to import the class. Near the top of you java file, put
import java.util.ArrayList;
精彩评论