2019年7月18日
摘要: The basic purpose of developing a C programming tutorial for this website – CircuitsToday – is to make it useful for people who wish to work with embe 阅读全文
posted @ 2019-07-18 17:32 你不知道的浪漫 阅读(133) 评论(0) 推荐(0) 编辑
摘要: In this article we are learning about “void pointers” in C language. Before going further it will be good if you refresh about pointers by reading – I 阅读全文
posted @ 2019-07-18 17:17 你不知道的浪漫 阅读(231) 评论(0) 推荐(0) 编辑
摘要: An array (vector) is a common-place data type, used to hold and describe a collection of elements. These elements can be fetched at runtime by one or 阅读全文
posted @ 2019-07-18 17:11 你不知道的浪漫 阅读(291) 评论(0) 推荐(0) 编辑
摘要: short大小端转换 32大端转小端原理 内置函数(传入大端转小端,小端转大端,以下同理) 16位无符号,大小端转换 32位无符号,大小端转换 64位无符号,大小端转换 convert big endian to little endian in C [without using provided 阅读全文
posted @ 2019-07-18 17:04 你不知道的浪漫 阅读(9036) 评论(0) 推荐(1) 编辑
摘要: 比如取1.80版本 阅读全文
posted @ 2019-07-18 16:47 你不知道的浪漫 阅读(3373) 评论(0) 推荐(0) 编辑
摘要: 输出结果: 阅读全文
posted @ 2019-07-18 16:43 你不知道的浪漫 阅读(743) 评论(0) 推荐(0) 编辑
摘要: hash操作 阅读全文
posted @ 2019-07-18 16:22 你不知道的浪漫 阅读(3811) 评论(0) 推荐(0) 编辑
摘要: 笔者平时时间有限,直接贴代码,关于几个接口的差别,可以查看这两篇文章 感受lambda之美,推荐收藏,需要时查阅 https://juejin.im/post/5ce66801e51d455d850d3a4a Java8 函数式编程读书总结 https://juejin.im/entry/5912b 阅读全文
posted @ 2019-07-18 16:13 你不知道的浪漫 阅读(978) 评论(0) 推荐(1) 编辑
摘要: 用法1: 以此类推,你也可以写出 笔者的一个用法是在泛型方法中提取实体的属性值,做进一步计算 阅读全文
posted @ 2019-07-18 16:03 你不知道的浪漫 阅读(9347) 评论(0) 推荐(0) 编辑
摘要: /*** * 保留2位小数 * @param floatValue * @return */ float scale(Float floatValue) { DecimalFormat format = new DecimalFormat("#.00"); String scaled = format... 阅读全文
posted @ 2019-07-18 15:55 你不知道的浪漫 阅读(6294) 评论(1) 推荐(0) 编辑
摘要: 启动类添加注解@EnableConfigurationProperties application.yml 使用方法: 阅读全文
posted @ 2019-07-18 15:49 你不知道的浪漫 阅读(13459) 评论(2) 推荐(2) 编辑
摘要: 我在其他类注入的时候出现以下错误 异常 Description: Field mibService in com.xxx.xxx.controller.SnmpController required a single bean, but 2 were found: - mibServiceImpl: 阅读全文
posted @ 2019-07-18 09:59 你不知道的浪漫 阅读(6760) 评论(0) 推荐(1) 编辑