Überprüfen Sie den Stapel leerer Java
Stack<String> test = new Stack<String>();
test.push("test1");
if (!test.empty())
{
test.pop();
}
CompSciGeek