平时在VS的环境下,主函数总会看到这两个参数,今天突然很想知道这两个参数的原理以及作用,因此查了下资料。真心受教了。下面的博文是在百度空间看一位大神的,原文链接:http://hi.baidu.com/sgglong70626/item/8881322b2dce21c1ee10f11eargc是命令...
分类:
其他好文 时间:
2014-05-05 12:48:27
阅读次数:
324
1 typedef signed char qint8; /* 8 bit signed */ 2
typedef unsigned char quint8; /* 8 bit unsigned */ 3 typedef short qint16; /* 16
bit signed */ 4 ty....
分类:
其他好文 时间:
2014-05-05 11:39:45
阅读次数:
503
使用live
writer写博客的确方便,但有个简单的问题,我始终无法解决,就是发布的博客老是无法首行缩进,试过好多方法,都有问题:直接加全角空格。上传时就给过滤掉了。修改defaultcss,结果只是本地改了,传上去一样。用text
template插件(参考),传上去倒是好了。但如果要再次编辑修...
1,指针没有指向一块合法的区域1指针没有初始化12345678910111213#include #include struct aa{char
*pa;char c;}ssa,*ssb;void main(){strcpy(ssa.pa,"abc");printf("%s \n",ssa.pa);...
分类:
其他好文 时间:
2014-05-04 11:38:09
阅读次数:
278
用于定义或修改本地元素的注释,包括parameter、checkbox
button等,例如checkbox button的描述,其在selection texts中最长字段只有30位,通过selection-screen
comment语法可以按text symbols设置对其属性重新定义。 1 ...
分类:
其他好文 时间:
2014-05-04 10:11:39
阅读次数:
400
概述Packages 是指供 Sublime Text
使用的资源文件集合,例如插件、语法高亮、菜单、片断等等。Sublime Text 自身安装了一些 Packages,还有很多用户创建的 Packages
可供下载。Packages 是以 .sublime-package 结尾的文件,它其实就是...
分类:
其他好文 时间:
2014-05-04 09:58:27
阅读次数:
274
string path = textBox1.Text; FileStream fs =
File.OpenRead(path); byte[] bytes = new byte[fs.Length]; fs.Read(bytes, ...
分类:
其他好文 时间:
2014-05-04 09:55:49
阅读次数:
402
题目来源:CF 427D Match & Catch
题意:给出2个字符串 求最短的连续的公共字符串 并且该字符串在原串中只出现一次
思路:把2个字符串合并起来求height 后缀数组height的应用
#include
#include
#include
using namespace std;
const int maxn = 100010;
char s[maxn];
int s...
分类:
其他好文 时间:
2014-05-04 09:32:45
阅读次数:
315
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
us...
分类:
其他好文 时间:
2014-05-04 09:30:21
阅读次数:
360
昨天,安装某款游戏之后,发现chrome的主页被篡改为360导航。
进入chrome设置修改主页,重新启动chrome还是360导航,后来发现在chrome快捷方式的属性中目标后面加了一串360导航的网站,删去,主页恢复。
但是重启电脑之后,主页又一次被篡改为360导航,快捷方式的属性中目标也正常。
不仅主页被篡改,chrome的账户登录状态也没有了,而且启动chrome都不...
分类:
其他好文 时间:
2014-05-03 21:23:11
阅读次数:
693