天下一家·MJ

博客园 首页 新随笔 联系 订阅 管理

2015年5月1日 #

摘要: 我们知道,在适用js的时候,程序是单线程执行的,而且如果遇到阻塞就会将浏览器卡死。能否异步的执行,让程序不再卡呢?可以,用setTimeout。但是,问题又来了,如果我有这样的要求:执行一个函数a;暂停5秒;执行函数b;暂停5秒;输出结果,暂停5秒后自动清空显示。以上的这段逻辑伪代码使用JavaSc... 阅读全文
posted @ 2015-05-01 12:22 天下一家·MJ 阅读(258) 评论(0) 推荐(0) 编辑

2014年12月7日 #

摘要: #include "stdio.h"#include "math.h"long Prime(long);long PrimeCount(long,long);int main(){ int a,curPrime,cfCount; int v; int tPrime=0; sc... 阅读全文
posted @ 2014-12-07 19:39 天下一家·MJ 阅读(447) 评论(0) 推荐(0) 编辑

摘要: #include "stdio.h"#include "malloc.h"#include "math.h"int *getinput(int len);double calc(int *data,int len);int main(){ int len=0; int *data; ... 阅读全文
posted @ 2014-12-07 16:34 天下一家·MJ 阅读(537) 评论(0) 推荐(0) 编辑

摘要: #include "stdio.h"#include "malloc.h"#include "math.h"void calc(int num,int N,long *data);int main(){ int N,num; long *result; scanf("%d",&nu... 阅读全文
posted @ 2014-12-07 16:33 天下一家·MJ 阅读(144) 评论(0) 推荐(0) 编辑

摘要: 输出整型的数值就不说了,显示浮点型:printf("%.2f",3.33); //保留两位小数显示,数字前面没有空格填充显示的时候,设计到0-1之间的数的时候:printf("%.2f",0.33);printf("%.2f",.33);//以上两种情况显示的效果一致。自动补零而不是补空格:pri... 阅读全文
posted @ 2014-12-07 12:42 天下一家·MJ 阅读(252) 评论(0) 推荐(0) 编辑

2014年10月18日 #

摘要: 1 Public Class KeyBinder 2 Public Sub BindControl(ByRef CControl As TextBox) 3 AddHandler CControl.KeyDown, AddressOf TextKeyDown 4 E... 阅读全文
posted @ 2014-10-18 23:45 天下一家·MJ 阅读(505) 评论(0) 推荐(0) 编辑

摘要: 我们知道VB.NET中的文本框是不支持Ctrl+A的快捷键的。如果让它支持呢?1 Private Sub txtSQL_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ... 阅读全文
posted @ 2014-10-18 23:22 天下一家·MJ 阅读(538) 评论(0) 推荐(0) 编辑

2014年9月20日 #

摘要: [function].call(obj,param1,param2,....)让函数[function]的当前作用域变成obj,即函数中的this变成这个obj,同时函数接收obj对象的指定的几个参数。[function].apply(obj,arguments)让函数[function]的当前作用... 阅读全文
posted @ 2014-09-20 21:01 天下一家·MJ 阅读(140) 评论(0) 推荐(0) 编辑

2014年9月14日 #

摘要: 使用git管理源代码已经成为现在开源社区的一大选择。开发的人都知道,在源代码管理中,我们需要监控和备份的是代码,而不是开发过程中生成的exe和dll文件。//即使在某些时候,我们需要某些dll,我们也可以而在使用git过程中,我发现我设置的exe过滤居然没有用。怎么说呢,就是我创建exe后,comm... 阅读全文
posted @ 2014-09-14 01:30 天下一家·MJ 阅读(341) 评论(0) 推荐(0) 编辑

2014年9月8日 #

摘要: 实例代码:1 Dim k As ToolTip2 3 k = New ToolTip()4 k.AutoPopDelay = 3000 '显示出气泡后的延时时间(毫秒)5 k.InitialDelay = 50 '出现前的延时(毫秒)6... 阅读全文
posted @ 2014-09-08 01:11 天下一家·MJ 阅读(584) 评论(0) 推荐(0) 编辑

友情链接Tkin的技术博客