引用 引用(reference)为对象起了另外一个名字,引用类型引用(refers to)另外一种类型。通过将声明符写成&d的形式来定义引用类型,其中 d是声明的变量名∶ int ival = 1024; int &refVal = ival; // refVal指向ival(是ival的另一个名字 ...
分类:
其他好文 时间:
2021-01-16 11:44:24
阅读次数:
0
在《DarkMode(1):产品应用深色模式分析》提过,单纯反转是不行的。但是,把不需要反转的,在反转过来。或者用js,给想要反转的,加上反转样式,再对其他的做微调。这样个人觉得,开发成本是最低的@media(prefers-color-scheme:dark){//one.app{filter:invert(1)hue-rotate(180deg);img,button,.active{//fi
分类:
Web程序 时间:
2020-12-17 13:10:01
阅读次数:
6
Problem Description Little Rabbit is interested in radix. In a positional numeral system, the radix is the number of unique digits, including the digi ...
分类:
其他好文 时间:
2020-08-06 20:41:05
阅读次数:
67
To perform a cold boot (also called a "hard boot") means to start up a computer that is turned off. It is often used in contrast to a warm boot, which... ...
分类:
其他好文 时间:
2020-07-18 00:38:36
阅读次数:
268
一、 一句话: 为了好区分,只是一个标识; jquery中的一个非常常见的用途是将存储在变量中的jquery对象与其他变量区分开来。例如,我将定义 var $email = $("#email"); // refers to the jQuery object representation of t ...
分类:
编程语言 时间:
2020-06-18 01:13:52
阅读次数:
64
I think the explanation from the Mozilla Docs describes it well: You can assign a different this object when calling an existing function. this refers ...
分类:
移动开发 时间:
2020-06-04 14:04:51
阅读次数:
92
/* * [Modified] Modern CSS Reset * @link https://github.com/hankchizljaw/modern-css-reset */ /* Box sizing rules */ *, *::before, *::after { box-sizin ...
分类:
Web程序 时间:
2020-06-03 15:14:21
阅读次数:
166
本篇将会讲解应用部署到Kubenetes集群,集群副本集查看,集群自愈能力演示,集群扩容,滚动升级,以及回滚。 本篇是Docker&Kubenetes系列的第四篇,在前面的篇幅中,我们向Kubenetes中部署了单个应用实例。如果单个节点故障了,那么服务就不可用了,这在实际环境中是不能接受的。在实际 ...
分类:
Web程序 时间:
2020-05-19 22:36:49
阅读次数:
78
Mathematical Formula 1. Taylor expansion $$ g(x) = g(x_0) + \sum_{k = 1}^{n}\frac{f^k(x x_0)^k}{k!}(x x_0)^k + R_n(x) $$ $R_n(x)$ refers to the Lagran ...
分类:
其他好文 时间:
2020-05-15 20:30:08
阅读次数:
147
1.检查*.hbm.xml里面类全名 2.检查*.hbm.xml文件名是否正确(自己文件名由于copy 丢失hbm) 3.检查hibernate.cfg.xml文件中的相关联的两个<mapping resource=""/>的顺序,可能有其中一个需要引用另一个,但是另一个却还没有编译,就是说被用作外 ...
分类:
移动开发 时间:
2020-04-16 15:07:38
阅读次数:
79