substring() 方法返回字符串的子字符串。 语法: public String substring(int beginIndex) public String substring(int beginIndex, int endIndex) 参数: beginIndex -- 起始索引(包括) ...
分类:
编程语言 时间:
2020-07-19 00:58:03
阅读次数:
314
1 //抽象被裝飾者 2 public abstract class Component{ 3 private String lsh="output:";//output:生成流水號 4 public abstract String operation();//抽象方法(包裝) 5 public S ...
分类:
编程语言 时间:
2020-07-18 13:36:48
阅读次数:
80
1. 查看mysql用户 select User,Host,authentication_string from mysql.user; + + + + | User | Host | authentication_string | + + + + | root | localhost | | | ...
分类:
数据库 时间:
2020-07-18 11:31:53
阅读次数:
86
步骤一 webpack 配置中添加ProvidePlugin插件,congfig/webpack.config.js: module.exports = function (webpackEnv) { plugins: [ new webpack.ProvidePlugin({ $: 'jquery ...
分类:
Web程序 时间:
2020-07-18 00:58:22
阅读次数:
169
1 任务 为了学习计算机底层和os,我给自己布置了一个任务:在x86硬件上,使用c和nasm来显示一张bmp图片。完成这个任务,前后估计花了2个月的业余时间。 这个任务涉及了很多知识点,包括:启动区、保护模式、nasm汇编、c和nasm汇编互调、ld链接、硬盘io读取、显卡调色板模式、bmp图片格式 ...
分类:
其他好文 时间:
2020-07-17 22:12:58
阅读次数:
92
unit Unit1;interfaceuses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl ...
其实这一部分的知识在前面我也算是学了一些了,今天老师讲的是一些应用部分,结果我发现自己一脸懵逼,有些题我甚至连这是最短路都没有看出来。看来还并没有修炼到一定的水准,并且我还是发现一些自己还没有学习过的知识,下面我们就先从链式前向星开始说起。 1、链式前向星 首先我们就来介绍一下这个东西是个什么。 图 ...
分类:
其他好文 时间:
2020-07-17 16:11:40
阅读次数:
51
关于兼容性问题: <a href="xxx.docx" target='_blank'></a> 下载文件时,这种写法是没有兼容性问题;但是下载图片时,IE 上会出现当前页面直接打开图片的问题,即便是加了 target='_blank'。 单个文件批量下载 方法一:H5 <a> 新特性 HTML 5 ...
分类:
Web程序 时间:
2020-07-17 13:57:49
阅读次数:
94
Ant Design Vue 中 modal 利用 $refs 简单使用 主要使用到 this.$refs.closeBtnModal.initShow(); 避免了父组件传值,再使用this.$emit() 的繁琐步骤, 这样可以在子组件中控制modal打开和关闭,不需要在父组件中写代码处理 01 ...
分类:
其他好文 时间:
2020-07-15 23:54:37
阅读次数:
208
Ant Design Vue 的 table rowSelection里面去掉全选框 解决办法: columnTitle:' ' 设置为空即可 <a-table :columns="columns" :data-source="data" :customRow="clickRow" :rowKey= ...
分类:
其他好文 时间:
2020-07-15 23:23:06
阅读次数:
282