Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Item { anchors.fill: parent Rectangle { id: rect anchors.fill: parent anchors ...
分类:
其他好文 时间:
2021-05-24 12:04:25
阅读次数:
0
https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm yum install postgresql13-contrib postgresql13-se ...
分类:
数据库 时间:
2021-05-24 10:29:11
阅读次数:
0
1. 继承 继承使得你可以定义一个通用的类(即父类),之后扩充该类为一个更加特定 的类(即子类)。 Java 术语中,如果类 C1 扩展自另一个类 C2, 那么就将 C1 称为次类(subclass ), C2 称为超类(superclass )。超类也称为父类 ( parent class) 或基 ...
分类:
其他好文 时间:
2021-05-24 10:22:57
阅读次数:
0
前言 本地Docker部署Pulsar消息代理实现消息发布和消息订阅 介绍 相关概念,后面有时间再花时间整理下。 实践步骤 1.使用dokcer本地部署pulsar docker run -it \ -p 6650:6650 \ -p 8080:8080 \ --mount source=pulsa ...
分类:
其他好文 时间:
2021-05-24 09:51:07
阅读次数:
0
问题:打包Maven项目的时候出现如下代码错误 Failure to find org.glassfish:javax.el:pom:3.0.1-b06-SNAPSHOT in https://repository.apache.org/snapshots was cached in the loc ...
分类:
编程语言 时间:
2021-05-24 09:38:48
阅读次数:
0
1.在调试乐鑫的SDK调试8266的的时候,发现如果不改代码里面的波特率,开发板默认的波特率是一个很奇怪的数字,可以改代码但是刚好学了一会儿QT就用C++去自己写一个串口调试助手。 话不多说先上图 布局很简单,水平布局,垂直布局再一起格栅布局,中间为了屏幕适应得加几个弹簧。 步骤 1.设置在ui界面 ...
分类:
其他好文 时间:
2021-05-24 09:23:52
阅读次数:
0
// 父类 function Parent() {this.eyes = 'blue'} Parent.prototype.getEyes = function getEyes() { console.log(this.eyes) } // 子类 function Chilren() {} // 原 ...
分类:
其他好文 时间:
2021-05-24 08:11:12
阅读次数:
0
如上图所示,A和B 、 B和C、B和D都是父子关系,C和D是兄弟关系,A和C 是隔代关系 针对不同的使用场景,如何选择行之有效的通信方式? 这是我们要探讨的。vue组件间通信的集中方式,如props、$emit/$on、 vuex、$parent/$children 等 方法一、props / $e ...
分类:
其他好文 时间:
2021-05-24 07:49:37
阅读次数:
0
1,存储类: 通过特定的字符来定义变量和函数可见性(作用域)和生命周期 1,auto存储类 auto 存储类是所有局部变量默认的存储类并只能修饰局部变量 例子: { int mount; 或 auto int month; } 2,register存储类 register 存储类用于定义存储在寄存器 ...
分类:
编程语言 时间:
2021-05-24 07:14:34
阅读次数:
0
错误如下: mount: wrong fs type, bad option, bad superblock on 192.168.1.7:data/nfsdir2, missing codepage or helper program, or other error (for several fi ...
分类:
其他好文 时间:
2021-05-24 06:40:25
阅读次数:
0