1. a.该构造函数没有将str指针初始化,应将指针初始化为NULL,或是使用new[]初始化。 b.该构造函数没有创建新的字符串,只是复制了原有字符串的地址。应当使用new[]和strcpy()。 c.该构造函数复制了字符串,但没有分配内存空间,应使用new char[len + 1]来分配适当数 ...
分类:
编程语言 时间:
2021-04-24 13:49:21
阅读次数:
0
Toady I’m gonna try to add a key for 2017 Range Rover with Xhorse VVDI Key Tool Plus on Bench. Tools A Land Rover KVM module chip VVDI Key Tool Plus A ...
分类:
其他好文 时间:
2021-04-22 15:45:09
阅读次数:
0
一、安装element plus:$ yarn add element-plus --dev 二、导入、引用: 三、首次运行时:$ yarn install 四、启动项目:$ yarn dev ...
分类:
系统相关 时间:
2021-04-21 11:52:31
阅读次数:
0
主键生成策略 @TabelID uuid 自增ID 雪花算法 mybatis-plus 的主键策略 package com.baomidou.mybatisplus.annotation; public enum IdType { AUTO(0), //数据库自增ID 记住表ID字段一定是自增的 N ...
分类:
其他好文 时间:
2021-04-20 15:05:56
阅读次数:
0
一、快速开发 1.添加依赖 <!--mybatis-plus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</vers ...
分类:
其他好文 时间:
2021-04-15 12:27:49
阅读次数:
0
一、引入依赖 https://mvnrepository.com/ <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.2</vers ...
分类:
编程语言 时间:
2021-04-15 12:07:08
阅读次数:
0
1、安装element-plus: main.js: //安装 element-plus npm install element-plus --save //引入 element-plus import ElementPlus from 'element-plus'; import 'element ...
分类:
其他好文 时间:
2021-04-14 11:57:37
阅读次数:
0
参考链接: https://captcha.anji-plus.com/#/doc https://github.com/anji-plus/captcha http://doc.ruoyi.vip/ruoyi-vue/document/cjjc.html#%E9%9B%86%E6%88%90aj- ...
分类:
其他好文 时间:
2021-04-14 11:53:09
阅读次数:
0
Mybatis-plus 上 简介 1.什么是Mybatis-plus MyBatis-Plus(简称 MP)是一个 MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 官网:https://baomidou.com/ 愿景 我们的愿景是成为 MyBa ...
分类:
其他好文 时间:
2021-04-13 11:46:14
阅读次数:
0
通过 lsof 命令,可以找到 Oracle 的 client 端 和 server 端的进程。 例如,我从远端连接到 oracle 数据库: -bash-4.1$ sqlplus sys/oracle@my19c as sysdba SQL*Plus: Release 12.2.0.1.0 Pro ...
分类:
数据库 时间:
2021-04-10 13:37:55
阅读次数:
0