void的含义:
# include
int f(void) //void表示不接收任何数据,int表示返回int类型值,即下面的 return 10;
{
return 10; //向主调函数返回10,即向main函数中调用的语句返回10这个值。
}
void g(void) //函数名前的void表示该函数没有返回值。
{
//return 10; //错误,与上面的void相矛盾...
分类:
编程语言 时间:
2015-08-02 16:49:06
阅读次数:
135
使用js解析url ,返回一个对象,使用函数:改成函数直接量:改成更高效的形式:
分类:
Web程序 时间:
2015-08-02 16:46:13
阅读次数:
117
DescriptionInputOutputSample Input6 4 1 2 2 3 2 4 4 5 5 6 4 5 6 6 3 1 2 4 4 6 6 6 Sample Output 5 2 2 5 4 1 6 0 HINTSourceDay1只有3个点可能取到最优解,分别是3个点中任选两个...
分类:
其他好文 时间:
2015-08-02 16:48:14
阅读次数:
106
本博文承接《php 利用socket发送GET,POST请求》,要利用上文封装好的Http类,考虑如何通过php脚本给博客园的博文提交评论。 原理: 在做这件事前,我们首先要明白,给博文提交评论的实质就是通过http协议服务器发送一个post请求。在发布评论前,我们需要做什么呢?对,是必...
分类:
Web程序 时间:
2015-08-02 16:46:02
阅读次数:
191
初始化手势同时添加手势事件---把手势添加到视图上 // 1.轻拍手势类 // 创建一个轻拍手势 同时绑定了一个事件 UITapGestureRecognizer *aTapGR = [[UITapGestureRecognizer alloc] initWithTarget:self...
分类:
移动开发 时间:
2015-08-02 16:47:03
阅读次数:
128
继续测模板... 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 struct Node 9 { 10 Node * ch[2]; 11 ...
分类:
其他好文 时间:
2015-08-02 16:47:20
阅读次数:
91
手机应用越来越广泛,但凡有实力的公司都会建立自己的APP,而公司开发这一块还没有涉及,接的很多业务都有做APP的需求,多是包给其他的公司做。之前公司也有试着做过,但是安排给一些实习生边学边做,花了时间,做出来的页面实在看不下去,当然可以慢慢完善,但是这样一个任务教给并不怎么熟练的实习生做,公司到最后...
分类:
移动开发 时间:
2015-08-02 16:46:20
阅读次数:
127
创建自定义过滤器非常容易。创建自定义过滤器需要将它放到自己的模块中。 {{user.name}} {{user.age}} {{user.city}} ...
分类:
Web程序 时间:
2015-08-02 16:44:41
阅读次数:
140
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他好文 时间:
2015-08-02 16:46:27
阅读次数:
93
除了 JavaBean,JXPath 也可以访问 DOM/JDOM。示例 XML: Head First Design Patterns Eric Freeman F 1976-09...
分类:
数据库 时间:
2015-08-02 16:44:59
阅读次数:
135
DescriptionToday on a lecture about strings Gerald learned a new definition of string equivalency. Two stringsaandbof equal length are calledequivalen...
分类:
其他好文 时间:
2015-08-02 16:44:59
阅读次数:
105
所需工具phpwrod 库php_zip 扩展下载phpword库,放到类加载路径。安装php_zip扩展下载地址http://pecl.php.net/package/ziplinux下载targz包,windows下下载dlllinux下 1 wget http://pecl.php.net/g...
分类:
其他好文 时间:
2015-08-02 16:44:09
阅读次数:
180
Description给定n个长度分别为a_i的木棒,问随机选择3个木棒能够拼成三角形的概率。Input第一行T(T#include#include#include#include#include#define rep(i,s,t) for(int i=s;i=t;i--)#define ren f...
分类:
其他好文 时间:
2015-08-02 16:45:55
阅读次数:
150
1.什么是ValueStack ValueStack是Struts2中,Action向页面传递数据的媒介。 ValueStack封装了Action的数据,并允许JSP通过OGNL来对其进行访问2.访问ValueStack 1.通过debug标签观察其结构。 debug标签 用于...
分类:
其他好文 时间:
2015-08-02 16:44:17
阅读次数:
160
自定义cell1.通过xib1>一定要注意在xib的cell中设置重用标识(reuse identifier)2>封装的步骤*换继承,重新拖TableView,然后实现数据源方法*新建xib描述cell的样子---DealCell.xib并把cell的高度设置为80,然后拖控件*新建UITableV...
分类:
移动开发 时间:
2015-08-02 16:44:34
阅读次数:
386
题目:求二叉树两个结点的最远距离。二叉树定义如下:class TreeNode{public: int val; TreeNode* left; TreeNode* right; TreeNode(int x):val(x),left(NULL),right(NULL){}}...
分类:
编程语言 时间:
2015-08-02 16:44:56
阅读次数:
158