MaterialApp({ Key key, this.title = '', // 设备用于为用户识别应用程序的单行描述 this.home, // 应用程序默认路由的小部件,用来定义当前应用打开的时候,所显示的界面 this.color, // 在操作系统界面中应用程序使用的主色。 this.t ...
分类:
移动开发 时间:
2021-01-21 10:35:17
阅读次数:
0
函数 1 def check(x,y): 2 if x<0 or x>n or y>m or y<0: 3 return False 4 else : 5 return True 类似C的 1 int check(int x,int y) 2 { 3 if(x<0 || x>n || y>m || ...
分类:
编程语言 时间:
2021-01-19 12:03:46
阅读次数:
0
Given a string , determine if it is?valid. A string is?valid?if, starting with an empty string , you can?transform into after performing the following ...
分类:
其他好文 时间:
2021-01-18 11:15:29
阅读次数:
0
1、查看日志 用户执行非法命令删除文件,sudo rm -rf share/ [root@check ~]# tail /var/log/secure ...
分类:
其他好文 时间:
2021-01-15 11:51:34
阅读次数:
0
首先通过 $ git branch -a 来查看所在目录的分支 当前是 master分支, 通过 $ git checkout -b kaifa origin/kaifa切换到 kaifa分支 ...
分类:
其他好文 时间:
2021-01-15 11:40:24
阅读次数:
0
nvGRAPH三角形计数示例 #include “ stdlib.h” #include“ inttypes.h” #include“ stdio.h” #include“ nvgraph.h” #define check( a )\ {\ nvgraphStatus_t status =(a); ...
分类:
其他好文 时间:
2021-01-13 11:23:13
阅读次数:
0
简单介绍 ? DDT(Date Driver Test),所谓数据驱动测试,简单来说就是由数据的改变从而驱动自动化测试的执行,最终引起测试结果的改变。通过使用数据驱动测试的方法,可以在需要验证多组数据测试场景中,使用外部数据源实现对输入输出与期望值的参数化,避免在测试中使用硬编码的数据,也就是测试数 ...
分类:
编程语言 时间:
2021-01-11 10:56:31
阅读次数:
0
python的一些模块可以用pip来进行安装,相当于linux下的yum命令很方便,模块不需要手动去编译安装 如果不嫌麻烦可以按照下面的步骤进行安装。个人建议干脆装更高的比方 2.7.15 自动就安装了,没必要自己单独安装 2.7.15 pip tool在这个目录下 C:\Python27\Scri ...
尝试环境:.netfx2.0~4.8、.net core 3.1~5.0、SQL Server 2008 R2 SP1,发现.net版本之间及数据兼容模式如何设置没差异。 FlagNameValueDescription 1 DISABLE_DEF_CNST_CHK Controls interim ...
分类:
数据库 时间:
2021-01-07 11:43:58
阅读次数:
0
1 #define IO std::ios::sync_with_stdio(0) 2 #include <bits/stdc++.h> 3 using namespace std; 4 #define mk make_pair 5 #define pb push_back 6 const int ...
分类:
其他好文 时间:
2021-01-06 11:49:40
阅读次数:
0