炙热微笑

文章
7
资源
0
加入时间
2年10月21天

字符串操作-分解字符串并补0

题目描述按要求分解字符串:输入两个数M,NM:输入的M串字符串N:输出的每串字符串的位数,不够补0。eginput:2 8 abc 123456789out:abc00000 12345678 90000000解题C++字符串常用函数:string substr (size_t pos = 0, size_t len = npos) const;note:第...

netty学习06-02--netty5心跳

一、所需jar包netty-all-5.0.0.Alpha2-sources.jarnetty-all-5.0.0.Alpha2.jar二、实现package com.heart;import io.netty.channel.ChannelFuture;import io.netty.channel.ChannelFutureListener;import io.netty.ch...