Inno Setup区段之Components篇 简述 场景:多组件可以自定义勾选安装的时候,通过Components+Types的形式来实现 Components Name 必需的 区分组件,/ \ 用来区分组件级别 Description 必需的 安装期间的描述 Types 组件所属类型 如果用 ...
分类:
其他好文 时间:
2020-07-18 11:35:49
阅读次数:
94
遇到一个需求,给PDF增加一个印章,使用iText7可以很方便地实现这个需求,通过Nuget添加iText7的引用。 1 string sourceFileName = txtFileName.Text; 2 string destFileName = Path.GetDirectoryName(s ...
分类:
其他好文 时间:
2020-07-18 11:35:28
阅读次数:
138
部分内容参考:https://www.cnblogs.com/corgi/p/5405453.html 本文章地址:https://www.cnblogs.com/LynnVon/p/13334523.html 当我按照文章做完之后,editor模式下完全没问题,Standalone模式下也没问题, ...
分类:
其他好文 时间:
2020-07-18 11:35:04
阅读次数:
109
#include<iostream> using namespace std; const int maxn=1000001; int prime[maxn],num=0; bool p[maxn]={0}; //找出素数 void findprime(int n){ for(int i=2;i<m ...
分类:
其他好文 时间:
2020-07-18 11:34:47
阅读次数:
77
链接:https://leetcode-cn.com/problems/binary-tree-inorder-traversal/ 代码 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNo ...
分类:
其他好文 时间:
2020-07-18 11:34:31
阅读次数:
66
tornado-vue 解决跨域问题 在tornado 中写一个BaseHandler类,其他类,继承这个BaseHandler类即可 # 解决tornado-vue 跨域问题, class BaseHandler(tornado.web.RequestHandler): # 重写该方法 def s ...
分类:
其他好文 时间:
2020-07-18 11:34:10
阅读次数:
84
前期准备工作 https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Receiving_standard_messages.html 微信文档 公众号后台,“基本配置”-“服务器配置”,填写服务器地址,注意,填写的方法 ...
分类:
微信 时间:
2020-07-18 11:33:42
阅读次数:
143
Variable Ordering for Efficient SAT Search by Analyzing Constraint-Variable Dependencies Vijay Durairaj and Priyank KallaDepartment of Electrical and ...
分类:
其他好文 时间:
2020-07-18 11:33:24
阅读次数:
75
备注: 本文参考于廖雪峰老师的博客Git教程。依照其博客进行学习和记录,感谢其无私分享,也欢迎各位查看原文。 知识点 git tag <name>新建一个标签,默认表示的是HEAD,当前提交. git tag v0.9 commit_id在指定提交上创建标签 git tag -a <tagname> ...
分类:
其他好文 时间:
2020-07-18 11:33:09
阅读次数:
162
一家企业在进行流程管理的时候,轻流建议不要局限于流程管理的方法论,而是实践出真知,没有一家完全相同的企业,所以也同样没有任何一家企业有相同的业务流程。 公司级的流程架构设定分为两类,POS(Plan Operation Support,属于稳定性、周期性和计划性行业)和OES(Operation E ...
分类:
其他好文 时间:
2020-07-18 11:32:47
阅读次数:
119
一,为什么要引入泛型? 1,可以统一集合中的数据类型 2,可以减少强制类型转换 3,泛型其实就是编译器检查类型 二,泛型语法如何实现? E指的是element,可以是各种各样的类型 1,Map使用泛型 // maps 中的key只能是String类型,value只能是Integer类型 Map<St ...
分类:
编程语言 时间:
2020-07-18 11:32:31
阅读次数:
78
恢复内容开始 恢复内容开始 一条sql执行的效率因执行计划的差异而影响,经常说这条sql走索引了,那条sql 全表扫了。索引是怎么走的呢,说说我了解到的几种索引走的方式。 索引的几种扫描方式 1.Index Unique Scans 索引唯一扫描2.Index Range Scans 索引范围扫描3 ...
分类:
数据库 时间:
2020-07-18 11:32:10
阅读次数:
91
1. 查看mysql用户 select User,Host,authentication_string from mysql.user; + + + + | User | Host | authentication_string | + + + + | root | localhost | | | ...
分类:
数据库 时间:
2020-07-18 11:31:53
阅读次数:
86
/* 斐波那契数列:f(n)=f(n-1)+f(n-2);其中f(1)=f(2)=1;*/ #include <stdio.h> #include <stdlib.h> /* 斐波那契数列:f(n)=f(n-1)+f(n-2);其中f(1)=f(2)=1; */ int Fibonacci(int ...
分类:
其他好文 时间:
2020-07-18 11:31:31
阅读次数:
67
题解:hashset(没有达到进阶的要求) /** * Definition for singly-linked list. * class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = ...
分类:
其他好文 时间:
2020-07-18 11:31:09
阅读次数:
54
接下来的几篇都是unity中比较高级的部分,会做一些讲解,有任何错误欢迎指导批评!!(以下为代码为手机打入,直接复制到编译器可能会有错误,请注意) 1.属性(property)可以存在于以下的结构中 类,结构体,接口(可以把属性当成方法来理解) 2.属性的特点 不确定存储位置,有set,get访问器 ...
分类:
编程语言 时间:
2020-07-18 11:30:42
阅读次数:
66
使用HTML+CSS+javascript实现简易计算器 奉上在javascript学习期间写的小程序(简易计算机) 一、先上图: 二、实现过程: 1.页面结构如下: <body> <div id="sDiv"> <div id="show"><div id="showme"></div></div ...
分类:
编程语言 时间:
2020-07-18 11:30:30
阅读次数:
75