醉熏芹菜

文章
5
资源
0
加入时间
3年0月20天

开始Python -- List和Tuple(3)

3、Tuple:不可变的Sequencel         Tuple类似List,不同的是Tuple不能被改变l         当你用“,”分割各个值时,就创建了Tuple:>>> 1, 2, 3(1, 2, 3)l         同样,你可以使用()来包括Tuple:>>> (1, 2, 3)(1, 2, 3)l         只有一个元素

netty 5 心跳

netty 5 心跳package com.server;import io.netty.bootstrap.ServerBootstrap;import io.netty.channel.Channel;import io.netty.channel.ChannelFuture;import io.netty.channel.ChannelInitializer;...