因为你的内部类Server不是静态的,所以不能在main函数里直接使用。
两种方法改:
1。把Server变成外部类,即在class Server前加个},去掉最后的}
2。class Server-----> static class Server