有时需要从控制台输入数字,就用到前面介绍的内容,数据转换,如:int num=int.Pares(Console.ReadLine()); int num=Convert.ToInt32(Console.ReadLine()); 上面两句代码效果相同,可以根据自己的习惯选择任意一种. using System; namespace vscode1 { class Program { static void Main(string[] args) { Console.WriteLine("请输入1
问题:大家在学习Java读取数据的时候一般都是使用Scanner方法读取数据,但是其中有一个小问题大家可能不知道, 就是我们在使用scanner的时候如果你先读取一个数字,在读取一行带有空格的字符串,势必会出错或者字符串读不到, 那么这篇文章就是解决此类问题的 ,希望对大家有所帮助. 错误代码: public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int x = scanner.ne
1. 粘包与半包 1.1 粘包现象 服务端代码 public class HelloWorldServer { static final Logger log = LoggerFactory.getLogger(HelloWorldServer.class); void start() { NioEventLoopGroup boss = new NioEventLoopGroup(1); NioEventLoopGroup worker = new NioEventLoopGroup(); t