与Visual Studio类似,Visual Basic也将从版本12直接跳到14。虽然新版本中的许多特性对于C#来说也是首次引进,但仍然有大量的功能增强是特别针对VB的,旨在简化VB的使用。本文列举了一些最令我们感兴趣的特性。对Null的支持新版本的一个特性是对null值的支持,该特性使用?.操...
分类:
其他好文 时间:
2015-08-06 18:11:01
阅读次数:
108
导出时是:__imp_?Utf82Unicode@@YA?AV?$basic_string@GU
导入时是:__imp_?Utf82Unicode@@YA?AV?$basic_string@_WU
G和_W的区别,为了研究各字母的含义。做了如下实验:
void fun()=>
?fun@@YAXXZ
void fun(int)=>
?fun@@YAXH@Z
void fu...
分类:
其他好文 时间:
2015-08-06 16:47:46
阅读次数:
92
几个常见的压缩文件扩展名
*.Z compress 程序压缩的文件;
*.gz gzip 程序压缩的文件;
*.bz2 bzip2 程序压缩的文件;
*.tar tar 程序打包的数据,并没有压缩过;
*.tar.gz tar 程序打包的文件,其中并且经过 gzip 的压缩
*.tar.bz2 tar 程序打包的...
分类:
系统相关 时间:
2015-08-06 15:11:08
阅读次数:
209
nginx.conf#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid ...
分类:
移动开发 时间:
2015-08-06 12:42:14
阅读次数:
205
使用twisted编写的chatroom,使用windows自带的telenet作为客户端。
from twisted.internet.protocol import Factory
from twisted.internet import reactor
from twisted.protocols.basic import LineReceiver
from twisted.interne...
分类:
其他好文 时间:
2015-08-05 18:26:13
阅读次数:
92
Oracle 表压缩(Table Compression)介绍1、官方文档说法:
As your database grows in size, consider using table compression. Compression saves disk space, reduces memory use in the database buffer cache, and can signif...
分类:
数据库 时间:
2015-08-05 06:43:14
阅读次数:
186
function edit_xml_file($xml_file_path,$datas,$is_index = false,$is_compress = true){
$doc = new DomDocument('1.0', 'utf-8');
$doc->formatOutput = true;
$flag = false;
if( !@file_exi...
分类:
Web程序 时间:
2015-08-04 23:08:13
阅读次数:
192
与零值的比较:
1.布尔变量与零值比较
规则1.不可将布尔变量直接与TRUE、FALSE 或者 1、0 进行比较。
根据布尔类型的语义,零值为“假” (记为 FALSE) ,任何非零值都是“真” (记为TRUE) 。TRUE 的值究竟是什么并没有统一的标准。例如 Visual C++ 将 TRUE 定义为1,而 Visual Basic 则将 TRUE 定义为-1。
假设布尔变...
分类:
其他好文 时间:
2015-08-04 23:00:22
阅读次数:
134
压缩和解压缩、归档压缩命令compress压缩(早期压缩命令)uncomprss解压缩压缩比:(压缩文件前大小-压缩后文件大小):压缩前文件大小gzip[option]fileName(.gz)-d解压缩-#(1-9)指定压缩比,默认为6.gunzipfilename.gzzcatfilename.gz不解压缩情况下查看文件内容bzip2[opt..
分类:
其他好文 时间:
2015-08-04 15:54:33
阅读次数:
101