<html> <embed height="200" type="application/x-shockwave-flash" width="200" src="http://www.blogclock.cn/swf/S1000746cf11489-9.swf" wmode="transparent ...
分类:
其他好文 时间:
2021-05-24 08:27:38
阅读次数:
0
例子是XE的 只是本人测试的,仅供学习!代码很乱! 在一个程序中测试 IdTcpClient和IdTcpServer有点坑, 测试的时候最好写Client和Server两个程序测试 Unit开始 unit Unit1; interface uses Windows, Messages, SysUti ...
第一种办法 父: 默认 this.addFlag = true handleAdd() { this.addFlag = false } //通过子元素给父传递 showHandle(data) { this.addFlag = data } <vital-add @changeHandle = " ...
分类:
其他好文 时间:
2021-05-24 07:38:27
阅读次数:
0
1.查看源码 from flask import Flask,redirect , render_template app = Flask( __name__) @app.route( '/ hello/<path:user> ' ) def hello_name(user) : message = ...
分类:
其他好文 时间:
2021-05-24 07:37:22
阅读次数:
0
设置电脑缩放与布局为100% 关闭抗锯齿 相关代码: viewer.scene.fxaa=false viewer.scene.postProcessStages.fxaa.enabled = false; 添加如下代码到项目中,自动调整分辨率 var supportsImageRenderingP ...
分类:
其他好文 时间:
2021-05-24 07:24:58
阅读次数:
0
Neural Network SMS Text Classifier https://www.freecodecamp.org/learn/machine-learning-with-python/machine-learning-with-python-projects/neural-networ ...
分类:
Web程序 时间:
2021-05-24 06:43:15
阅读次数:
0
& | ! && || 五个分别代表 与、或、非、逻辑与、逻辑或 1、变量1 & 变量2:只有当变量 1 和变量 2 都为 true,结果为 true,否则为 false。 【A & B AB都会执行】2、变量1 | 变量2:变量 1 和变量 2 只要有一个为 true,结果为 true,否则为 f ...
分类:
其他好文 时间:
2021-05-24 05:25:16
阅读次数:
0
http://poj.org/problem?id=2279 题意: 一共有n个人,要求第i行放置ai个人,且每一行从左往右人的编号递增,每一列从上往下人的编号递增,问有多少种放置方式。 杨氏矩阵: 由1——n的n个数组成,对于每一个位置,要么这个位置没有元素,要么这个元素的左方和上方都有元素,且元 ...
分类:
其他好文 时间:
2021-05-24 04:36:14
阅读次数:
0
Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:
Web程序 时间:
2021-05-24 04:28:43
阅读次数:
0
思路: 最直观的就是分别用两个数组来存放两棵树的叶子节点。 所以就是dfs每棵树,当遍历到叶子节点时,就加入进数组里。最后得到的两个数组在判断长度是否相等,不等就return false,相等就遍历判断是否存在不相等的元素,有就return false 代码: DFS递归 /** * Definit ...
分类:
其他好文 时间:
2021-05-24 04:27:59
阅读次数:
0