我们先看下面的程序:#include
int main()
{
int child;
char *args[] = {"/bin/echo", "Hello", "World!", NULL};
if(!(child = fork()))
{
/* child */
execve("/bin/echo", args, NULL});
printf("I am back,...
分类:
系统相关 时间:
2015-03-20 09:20:14
阅读次数:
166
乌龙猫网站昨日刚刚上线,后来在IE6下发现侧边栏的智能浮动中,第一个模块的margin-top不为0,这个原本在CSS中已经定义的样式为:HTML:CSS:.sidebar_block:first-child { margin:0; }遇到IE6不支持first-child伪类不是第一次了,平时都是...
分类:
其他好文 时间:
2015-03-18 17:43:32
阅读次数:
114
今天 apache 突然启动不起来了,查看了一下错误日志发现了如下错误:
[Tue Mar 17 11:27:32 2015] [crit] Parent: child process exited with status 3 -- Aborting.
[Tue Mar 17 11:28:25 2015] [notice] Apache/2.2.11 (Win32) PHP/5.2.9-2 c...
分类:
Web程序 时间:
2015-03-17 15:53:00
阅读次数:
147
本篇文章由:http://xinpure.com/css3-pseudo-class-difference-between-nthchild-and-nthoftype/首先来看看 nth-child(n) 和 nth-of-type(n) 的共同点两者唯一的共同点就是: 参数n的用法n 可以是数字...
分类:
Web程序 时间:
2015-03-17 00:27:47
阅读次数:
190
1 template 2 void percolatedown(T a[], int n, int i) 3 { 4 T tm = a[i]; 5 int child = i a[child+1]) 9 child++;10 if (tm >...
分类:
编程语言 时间:
2015-03-15 21:12:36
阅读次数:
174
/**
* Ask one of the children of this view to measure itself, taking into
* account both the MeasureSpec requirements for this view and its padding
* and margins. The child must have Ma...
分类:
移动开发 时间:
2015-03-14 23:18:52
阅读次数:
463
UVA10494:If We Were a Child Again 大数除法加取余import java.util.Arrays;import java.util.Scanner;import java.math.*;public class Main{ public static void ...
分类:
编程语言 时间:
2015-03-14 21:27:57
阅读次数:
168
我们先来看看优酷的控件是怎么回事?
只响应最后也就是最顶部的卡片的点击事件,如果点击的不是最顶部的卡片那么就先把它放到最顶部,然后在移动到最前面来,反复如次。
知道了这几条那么我们就很好做了。
里面的技术细节可能就是child的放置到前面来的动画问题把。
先看看我们实现得效果:
然后仔细分析一下我们要实现怎么样的效果:
我也是放置了一个按钮和两个view在控件上面,只有...
分类:
移动开发 时间:
2015-03-12 20:50:42
阅读次数:
214
学习动态性能表第三篇-(1)-v$sq 2007.5.25V$SQL中存储具体的SQL语句。 一条语句可以映射多个cursor,因为对象所指的cursor可以有不同用户(如例1)。如果有多个cursor(子游标)存在,在V$SQLAREA为所有cursor提供集合信息。例1:这里介绍以下child....
分类:
数据库 时间:
2015-03-12 16:40:21
阅读次数:
172
任何子级游戏对象 (Child GameObject) 的检视器 (Inspector) 中的变换 (Transform) 值都会相对于父级 (Parent) 的变换 (Transform) 值而显示。这些值又被称局部坐标 (Local Coordinate)就是说。u3d界面上设置的坐标都是其本地...
分类:
其他好文 时间:
2015-03-12 06:22:58
阅读次数:
1904