介绍 为了让程序有价值,我们需要能够处理最简单的数据单元:数字,字符串,结构体,布尔值等。 TypeScript支持与JavaScript几乎相同的数据类型,此外还提供了实用的枚举类型方便我们使用。 布尔值 最基本的数据类型就是简单的true/false值,在JavaScript和TypeScrip ...
分类:
其他好文 时间:
2020-01-22 13:05:55
阅读次数:
51
规划 环境:redhat6.9 安装包:p13390677_112040_Linux-x86-64_1of7.zip p13390677_112040_Linux-x86-64_2of7.zip 数据库配置 ORACLE_SID=csk; ORACLE_BASE=/home/app/oracle; ...
分类:
数据库 时间:
2020-01-22 13:05:23
阅读次数:
130
website; A visual survey of visualization techniques for time-oriented data. 1. Left pannel filter of visualization techniques; Number of variables: u ...
分类:
其他好文 时间:
2020-01-21 23:42:59
阅读次数:
117
点击电脑右下角wamp图标,然后进入mysql 下面的 my.ini 转移数据发现报这个错,字面意思允许的不够大。网上很多说法不起作用,解决方法如下: 可以借助Navicat,在数据库中新建查询 输入 show VARIABLES like '%max_allowed_packet%'; 查看空间大 ...
分类:
数据库 时间:
2020-01-18 21:39:13
阅读次数:
131
https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/deployment_guide/sec-using_yum_variables https://access.redhat.com/docum ...
分类:
其他好文 时间:
2020-01-17 13:53:11
阅读次数:
116
An example of the typical approach to calculating expectaion of product of several random variables. ...
分类:
其他好文 时间:
2020-01-16 12:47:32
阅读次数:
72
错误提示信息:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon'。 出现该问题的原因是MySQL驱动jar中的默认时区是UTC。 UTC代表的是全球标准时间 ,但是我们使用的时区是东八区,领先UT ...
分类:
数据库 时间:
2020-01-16 10:58:04
阅读次数:
493
使用记录: SHOW VARIABLES LIKE "general_log%"; SET GLOBAL general_log = 'ON'; SET GLOBAL general_log_file = 'd:\mysql.log'; General_log 详解 1.介绍 开启 general ...
分类:
数据库 时间:
2020-01-15 23:27:21
阅读次数:
189
1. 判断是否是空值 is not null 和 is null select * from XXX where column_name is not null; select * from XXX where column_1 is not null and column_2 is not nul ...
分类:
数据库 时间:
2020-01-15 21:17:26
阅读次数:
79
题目很简单。差点10题,非常可惜。 A: 签到题+4不应该。 solver:lzh 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef pair<int, int> pii; 4 typedef long long ll; 5 #d ...
分类:
其他好文 时间:
2020-01-14 20:29:35
阅读次数:
108