好物分享
-
css零到一高级教程002:CSS 边框图像
CSS 边框图像 CSS border-image 属性 CSS border-image 属性允许您指定要使用的图像,而不是包围普通边框。 该属性有三部分: 用作边框的图像 在哪里裁…… -
python基础学习day7—元组,字符串
''' 概念: 元组 (tuple): 不能修改, 是序列 用 () 定义 ''' # a = (1,2,3,4,[1,2,3]) # print(type(a)) # 空元组 # a = () # print(type(a)) # print(…… -
Java用for循环打印九九乘法表
代码如下: package struct; public class ForDemo04 { public static void main(String[] args) { //打印九九乘法表 //1.我们先打印第一…… -
shiro spring boot的junit测试 获取SecurityUtils
spring boot :2.2.8.RELEASE shiro:1.4.1 junit:junit-jupiter-api-5.5.2.jar 在测试类中需要引用 到shiro的登录信息SecurityUtils 不使用mock的情况下 im…… -
知识图谱(Knowledge Graph)
由于互联网内容的大规模、异质多元、组织结构松散的特点,给人们有效获取信息和知识提出了挑战。 谷歌于2012年5月16日首先发布了知识图谱(Knowledge Graph)…… -
ceedling—>BUG记录 undefined reference to `__LDREXW‘
现象 测试文件A.c中内容,依赖于B.c,这里mock了B.h #include "unity.h" //#include "support_A.h" #include "mock_B.h" #include "A.h" 如上代码段,support_…… -
-
-
-
2-网络编程学习环境搭建
工欲善其事,必先利其器,学习网络编程,不动手也是不行的。这里先介绍一下我使用到的相关工具软件。 1. 相关的软件 操作系统 Linux: ubuntu 14.4 + VM 虚拟机……