div{ height:200px; color:#F00;}.left{ float:left;
width:100px; background:#00f; _margin-right:-3px;}.right{ float:right;
width:100px; background:#0f0;...
分类:
其他好文 时间:
2014-05-26 23:51:20
阅读次数:
401
习惯了直接在xml里设置margin(距离上下左右都是10dip),如:只是有些情况下,需要在java代码里来写。API中,android.view.ViewGroup.MarginLayoutParams有个方法setMargins(left,
top, right, bottom)。可是View...
分类:
移动开发 时间:
2014-05-26 23:51:05
阅读次数:
543
进程/线程控制: 创建 退出 等待 多进程 fork() exit() wait()
多线程pthread_createpthread_exit()pthread_join()线程的同步与互斥:线程的互斥...
分类:
编程语言 时间:
2014-05-26 23:46:42
阅读次数:
318
原题地址:https://oj.leetcode.com/problems/populating-next-right-pointers-in-each-node/题意:
1 / \ 2 3 / \ / \ 4 5 6 7变为: ...
分类:
编程语言 时间:
2014-05-26 23:43:29
阅读次数:
332
[题目]设$p>1,f\in
C(0,+\infty)$,且$\int_0^\infty|f(t)|^pdt$收敛,证明:$$\left\{\int_0^\infty\left[\frac{1}{x}\int_0^x|f(t)|dt\right]^pdx\right\}^{\frac{1}{p}}\...
分类:
其他好文 时间:
2014-05-23 06:18:24
阅读次数:
408
先看效果图: 游戏结束图: javascript实现源码:
俄罗斯方块
© 2009 - 2014 All Rights by ithomer.net
var domain="www.zuidaima.com";
var author="zuidaima";
var map=eval("["+Array(23).join("0x801,")+"0xfff]");
var tatris=[...
分类:
编程语言 时间:
2014-05-23 02:19:04
阅读次数:
253
有一道这样的面试题:开启一个子线程和主线程同时运行,子线程输出10次后接着主线程输出100次,如此反复50次。先看下面代码:package com.maso.test;
/**
*
* @author Administrator
* 两个线程,其中是一个主线程,第一个线程先运行输出10次,主线程接着运行输出100次,如此反复50次
*/
public class ThreadTest3...
分类:
移动开发 时间:
2014-05-23 00:57:26
阅读次数:
368
LEFT JOIN 操作符
LEFT JOIN 关键字从左表(table1)返回所有的行,即使右表(table2)中没有匹配。如果右表中没有匹配,则结果为 NULL。
SQL LEFT JOIN 语法
SELECT column_name(s)
FROM table1
LEFT JOIN table2
ON table1.column_name=table2.column_name;...
分类:
数据库 时间:
2014-05-23 00:10:46
阅读次数:
497
1 #include 2 3 4 using namespace std; 5 6 void
Repeat(int* a,int Left,int Right); 7 int QuickSort(int* a,int Left,int Right); 8
9 10 void main()1...
分类:
其他好文 时间:
2014-05-22 14:53:10
阅读次数:
224
以下内容系原创,转载请务必注明地址
主要参考资料:我在 Stackoverflow 上提的问题 Why
the first is right but the second is wrong ?
这令人纠结的两行代码如下:
const char *cval = "nothing"; // 正确
int *ival = {1, 2, 3, 4}; // 错误...
分类:
其他好文 时间:
2014-05-21 15:32:47
阅读次数:
277