C. Nice Garland You have a garland consisting of nn lamps. Each lamp is colored red, green or blue. The color of the ii-th lamp is si ('R', 'G' and 'B ...
分类:
其他好文 时间:
2020-01-18 16:29:37
阅读次数:
90
D. Diverse Garland You have a garland consisting of n lamps. Each lamp is colored red, green or blue. The color of the ii-th lamp is si('R', 'G' and ' ...
分类:
其他好文 时间:
2020-01-18 14:30:27
阅读次数:
92
import React from 'react' import copy from 'copy-to-clipboard' export default class App extends React.Component { constructor(props) { super(props) th ...
分类:
其他好文 时间:
2020-01-18 14:27:25
阅读次数:
104
1、带标题、表头的表格:"<td></td>" <table> <caption> /*表格的标题,居中显示*/ </caption> <tr> <th> /*表头,内容居中,加粗显示 */ </th></tr> <tr><td></td></tr> </table> 2、带结构的表格:当表格很长的 ...
分类:
Web程序 时间:
2020-01-18 10:25:31
阅读次数:
86
众所周知,知识图谱是Google于2012年提出,用来优化搜索结果。经过多年的发展,知识图谱在人工智能的许多行业都拥有了成熟落地的应用。按照知识图谱的覆盖面来看,主要分为通用知识图谱与行业知识图谱。 This is why a “web” of notes with links between th ...
分类:
其他好文 时间:
2020-01-18 00:49:03
阅读次数:
525
1.创建类和生成示例 说明:constructor是构造方法,在new对象时自动调用,最后返回实例(不用写return)。类中方法前不用写function。若不写constructor,则类用默认的constructor。 2.继承 子类能继承父类的方法和属性。 说明:程序报错:一个类中的方法的th ...
分类:
其他好文 时间:
2020-01-17 09:53:13
阅读次数:
70
Redis事务-秒杀案例 讲解了之前的知识,我们来做一个秒杀实例 本文只提供后台jedis操作代码 基础代码: 设置Redis库存: set SecKill:0101:kc 10 public static boolean doSecKill(String uid,String prodid) th ...
分类:
其他好文 时间:
2020-01-17 00:13:09
阅读次数:
85
1,模板页面的html上需要声明Thymeleaf的命名空间,<html xmlns:th="http://www.thymeleaf.org"> 2,文本标签 th:text/th:utext th:text进行文本替换,不会解析html <p th:text="text标签: + ${msg}" ...
分类:
其他好文 时间:
2020-01-16 14:27:09
阅读次数:
63
玻璃窗今天我们要实现的是雨滴效果,不过实现雨滴前,我们先把毛玻璃的效果弄出来,没有玻璃窗,雨都进屋了,还有啥好敲打的。<divclass=‘window‘></div>.window{position:absolute;width:100vw;height:100vh;background:url("https://cn.bing.com//th?id=OHR.Parrot
分类:
Web程序 时间:
2020-01-16 10:21:45
阅读次数:
161
<tbody th:if="${pageInfo?.list}"> <tr th:each="groupList,loopStatus : ${pageInfo?.list}"> <td id='number0' th:if="${flag}==0" th:each="group,loopStatu ...
分类:
Web程序 时间:
2020-01-13 21:50:11
阅读次数:
115