摘要:
参考我52的文章:https://www.52pojie.cn/thread-912471-1-1.html 阅读全文
摘要:
3.编写一个函数,从字符串s的第i个字符开始删除n个字符(注意要检查输入参数) 4.用递归方法求一个n个数的整形数组的最大值 阅读全文
摘要:
1 #include 2 #include 3 #include 4 5 void reverse(char *p) { 6 if('\0' == *p) { 7 return; 8 } 9 10 reverse(p+1); //这里不可以用++p,... 阅读全文
摘要:
指针 指针作为函数参数 数据类型 函数名(指针……) 指针作为返回值 数据类型 *函数名(参数,参数,参数……) 指向函数的指针 数据类型 (*函数名)(参数,参数……) 函数指针作为形参 数据类型 函数名(数据类型 (*函数名)(参数,参数,参数……),参数……) 返回函数指针的函数 阅读全文
摘要:
1.1 Introduction When writing programs that communicate across a computer network, one must first invent a protocol, an agreement on how those program 阅读全文
摘要:
原文链接:http://tutorials.jenkov.com/java-performance/resizable-array.html,如有侵权,立删 Java Resizable Array Java Resizable Array - GitHub Repository Resizable 阅读全文
摘要:
原文链接:http://tutorials.jenkov.com/java-nio/selectors.html,如有侵权,立删 这篇臭又硬,自己啃吧 阅读全文
摘要:
原文链接:http://tutorials.jenkov.com/java-nio/channel-to-channel-transfers.html,如有侵权,立删 Java NIO Channel to Channel Transfers transferFrom() transferTo() 阅读全文
摘要:
原文链接:http://tutorials.jenkov.com/java-nio/scatter-gather.html,如有侵权,立删 Java NIO Scatter/Gather Scattering Reads Gathering Writes Java NIO引入了 Scatter 和 阅读全文
摘要:
原文链接:http://tutorials.jenkov.com/java-nio/buffers.html,如有侵权,立删。 Java NIO Buffer buffer的基本使用 buffer的capacity、position、limit属性 buffer类型 分配缓存区 向buffer中写入 阅读全文