用户自定义协议client/server代码示例 代码参考链接:https://github.com/sogou/workflow message.h message.cc server.cc client.cc 关于user_defined_protocol 本示例设计一个简单的通信协议,并在协议 ...
分类:
其他好文 时间:
2020-12-03 11:39:04
阅读次数:
3
再向自定义注解添加元注解时,遇到一个错误 Annotations are not allowed here 排除写错和导入单元测试和Maven依赖的问题,百度一下并没有找到解决的办法,于是Google搜索一下,在SO上找到解决办法 意思就是说,在注解后面添加了“;”号导致的,一看自己的代码确实是这 ...
分类:
其他好文 时间:
2020-12-02 12:40:44
阅读次数:
5
题目 Petya has equal wooden bars of length n. He wants to make a frame for two equal doors. Each frame has two vertical (left and right) sides of length ...
分类:
其他好文 时间:
2020-11-30 16:00:25
阅读次数:
6
代码如下: <style> *{ margin: 0; padding: 0; } html,body{ width: 100%; height: 100%; } body{ background:#1e1e1f; overflow:hidden; } .box{ width: 100%; heig ...
分类:
其他好文 时间:
2020-11-27 10:58:16
阅读次数:
6
解决方案:删除工程下面的module-info.java文件即可。 https://stackoverflow.com/questions/60431564/eclipse-java-ide-junit5-junit-jupiter-api-assertions-is-not-accessible ...
分类:
数据库 时间:
2020-11-25 12:52:40
阅读次数:
10
BFC问题: 概念:页面渲染规则 出发条件: overflow:hidden 规则: 浮动参与高度计算 清除浮动 BFC不会和浮动发生重叠 自适应两栏布局 子元素不会影响外部元素 margin-top传递问题(父元素上加:overflow:hidden 、padding-top 、 border-t ...
分类:
其他好文 时间:
2020-11-24 12:45:01
阅读次数:
7
tomcat7 - Changing default welcome-page for spring-boot application deployed as a war - Stack Overflow https://stackoverflow.com/questions/26057995/ch ...
分类:
编程语言 时间:
2020-11-23 11:59:09
阅读次数:
7
SVG Sample This is a sample to use SVG in markdown on the website cnblogs. 键命令 常用命令:KEYS EXISTS DEL TTL EXPIRE PERSIST //EXISTS 检测key存在 EXISTS key1 // ...
分类:
其他好文 时间:
2020-11-13 12:16:50
阅读次数:
6
一次,要实现一个公告,需要走马灯效果。 发现,文字的宽度计算是需要用一个模拟的元素来计算的,因为我们用来实现走马灯效果的元素肯定是要设置overflow:hidden;的。 即,我们不可能用走马灯效果本身需要用到的div来计算文字的总宽度。 其次,也要注意各个端的font-size,文字的宽度与此相 ...
分类:
其他好文 时间:
2020-11-08 17:04:57
阅读次数:
24
增删改查 <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:padding="16dp" android:orientation="vertical" android:background="@drawable/bg" andr ...
分类:
移动开发 时间:
2020-11-06 02:34:22
阅读次数:
27