1 <!DOCTYPE html> 2 <html> 3 <head lang="en"> 4 <meta charset="utf-8" /> 5 <title></title> 6 <style type="text/css"> 7 *{ 8 margin: 0; 9 padding: 0; 1 ...
分类:
Windows程序 时间:
2016-11-05 09:39:04
阅读次数:
1198
本例效果图: 代码文件: http://www.cnblogs.com/del/archive/2008/10/23/1317926.html ...
分类:
其他好文 时间:
2016-11-03 19:00:56
阅读次数:
198
总结了一下关于使用onmouseover以及onmouseout会出现的bug 首先简单的布局: 简单写了一下样式,效果如下: js代码如下: 需要的效果是移入时alert(“移入"),移出时alert("移出"); 然而会产生一个bug,当鼠标从灰色移动到粉色区域,或者从粉色移动到灰色区域的时候, ...
分类:
其他好文 时间:
2016-11-02 00:43:10
阅读次数:
249
Given a binary tree Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set to NULL ...
分类:
编程语言 时间:
2016-11-01 19:00:10
阅读次数:
139
一、缘由: 看着数据库大家庭都有主从模式,想着Mongodb应该也不会落下。但从官网看来,先是早先舍弃了Master-Master模式,现在又在不推荐 Master-Slave模式,这是要标新立异呀。不过,也许大家都会觉得Replica Set的Primary故障自动转移、分片,用起来更爽一点,所以 ...
分类:
数据库 时间:
2016-10-28 22:46:21
阅读次数:
183
简述 QEvent 类是所有事件类的基类,事件对象包含事件参数。 Qt 的主事件循环(QCoreApplication::exec())从事件队列中获取本地窗口系统事件,将它们转化为 QEvents,然后将转换后的事件发送给 QObjects。 一般来说,事件来自底层窗口系统(spontaneous ...
分类:
其他好文 时间:
2016-10-23 21:14:13
阅读次数:
214
#include <gtk/gtk.h> gint test() { while(1) { gdk_threads_enter(); g_printf("hello\n"); gdk_threads_leave(); }; return TRUE; } gint timeout_callback( ...
分类:
编程语言 时间:
2016-10-22 17:41:59
阅读次数:
263
class A: def __init__(self): print "enter A" print "leave A" class B(A): def __init__(self): print "enter B" A.__init__(self) # old method print "leav ...
分类:
编程语言 时间:
2016-10-21 08:02:14
阅读次数:
169
Description Arseniy is already grown-up and independent. His mother decided to leave him alone for m days and left on a vacation. She have prepared a ...
分类:
其他好文 时间:
2016-10-17 07:08:21
阅读次数:
262
处理多线程任务时,如果不加临界区,CPU来回切换,导致数据出现错误,所以需要用到临界区。 读者可以把Enter和leave屏蔽了看看什么效果。 ...
分类:
编程语言 时间:
2016-10-07 20:15:24
阅读次数:
127