css样式 input[type="checkbox"] { width: 16px; height: 16px; display: inline-block; text-align: center; vertical-align: middle; position: relative; margi ...
分类:
其他好文 时间:
2020-10-13 17:37:26
阅读次数:
24
概述 微软的软件测试之道 里 看到的 感觉是一个 蛮科学 的东西 思路 只要认真对待某长期的事, 就可以采用这种循环来处理 一个循环, 多次叠加 循环 plan 事先计划 分析 确定过程 预测结果 do 执行计划 check 分析结果 act 审查步骤 改进计划 后续 这玩意还有其他的 改进版 有空 ...
分类:
其他好文 时间:
2020-10-10 17:42:12
阅读次数:
19
① 主键(PRIMARY KEY)约束: 不能重复,不能为空,且一个表中只能有一个主键。(注:用多个列创建索引时,只能用表级主键约束来创建); ② 外键(foreign key)约束: 数据可以重复,但不能为空; 如;创建临时表temp时,关联了users中的主键userID Create tabl ...
分类:
其他好文 时间:
2020-10-09 20:58:54
阅读次数:
21
DCl方式实现单例模式的优点是既能够在需要时才初始化单例,又能够保证线程安全,且单例对象初始化后调用getInstance不进行同步锁。代码如下所示:publicclassSingleton{privatestaticSingletonsInstance=null;privateSingleton(){}publicstaticSingletongetInstance(){if(sInstance
分类:
其他好文 时间:
2020-10-09 20:38:34
阅读次数:
24
洗扑克牌过程为经典的变量交换 步骤: 1)由原数组每次遍历随机从中抛出一张牌 2)随机牌赋值给暂存牌 3)始存牌赋值给随机牌 4)暂存牌赋值给终存牌 实现代码 var cards = 54; // 以一副斗地主为例13 × 4???? + 2 = 54 function wash(cards) { ...
分类:
Web程序 时间:
2020-10-09 20:25:52
阅读次数:
31
先按照题目提示把回文数搞出来,然后挨个判断素数即可。 #include<iostream> #include<set> using namespace std; set<int> s; int a[10]; int m, n; int check(int t){ for(int i = 2; i < ...
分类:
其他好文 时间:
2020-10-07 21:26:21
阅读次数:
27
2019-2020 ICPC Northwestern European Regional Programming Contest (NWERC 2019) I-Inverted Deck #include<bits/stdc++.h> using namespace std; const int ...
分类:
其他好文 时间:
2020-10-07 20:36:52
阅读次数:
20
服务器端控件主要有:Label、TextBox、Button、RadioButton、CheckBox、RadioButtonList、CheckBoxList、HyperLink控件。控件Label、TextBox<formid="form1"runat="server"><div><!--html控件,html服务器端控件,asp.net服务端控件-->&l
分类:
Web程序 时间:
2020-10-05 21:37:39
阅读次数:
30
linux安装并配置版本控制软件subversion(svn小乌龟)实战教程
分类:
系统相关 时间:
2020-10-05 21:36:00
阅读次数:
26
1.创建表时并创建外键约束 create table score( scoreID int primary key, stuID int , score int constraint ck_score check(score between 0 and 100), courseName varcha ...
分类:
数据库 时间:
2020-09-24 22:03:46
阅读次数:
54