之前接触一个往Console里输入参数的项目,资深QA教我怎么run,灰常脸红。 今日无事,baidu之。Step1 写简单Console Code. 1 class Program 2 { 3 static void Main(string[] args) 4...
分类:
其他好文 时间:
2014-07-03 10:37:07
阅读次数:
219
之前在windows下使用python调用某些模块时都会报错,像这样:C:\Documents and Settings\Administrator>python -m CGIHTTPServerTraceback (most recent call last): File "C:\Python2....
分类:
编程语言 时间:
2014-07-03 09:41:18
阅读次数:
656
man是自定义的对象,使用var tim = JSON.stringify(man); var newman=JSON.parse(tim)后newman的类型是“object”并不是一个Man,怎么才能变回一个Man呢?
function Man() {
this._type = "man";
this.name="";
this.run = function () {...
分类:
编程语言 时间:
2014-07-02 09:51:34
阅读次数:
187
方法一:(java习惯,在android平台开发时这样是不行的,因为它违背了单线程模型)
刚刚开始接触android线程编程的时候,习惯好像java一样,试图用下面的代码解决问题
new Thread( new Runnable() {
public void run() {
myView.invalidate();
...
分类:
移动开发 时间:
2014-07-02 08:54:23
阅读次数:
197
原文地址:http://www.cnblogs.com/axzxs2001/archive/2009/01/19/1378383.html在vs中,有很多朋友问起,在一个网站项目中的aspx和aspx.cs文件的关系,现在就归纳如下:可以把aspx文件分成三部分:l有run=”server”属性的标...
分类:
Web程序 时间:
2014-07-01 18:20:49
阅读次数:
285
题目链接:点击打开链接
构造一个星形图+一个完全图就好了。。
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define inf 10000000
#define ll __int64
#define N 2105
ll n, m, v...
分类:
其他好文 时间:
2014-07-01 14:51:11
阅读次数:
201
Live broadcasting with arduinoget a pc , make it run linux. make arduino catch the weather sensor and then transport the information to the PC side. P...
分类:
其他好文 时间:
2014-07-01 12:15:21
阅读次数:
167
public class FillQueueThread extends Thread {
private Queue queue;
public FillQueueThread(Queue queue){
this.queue = queue;
}
@Override
public void run() {
while(true){
try {
boolean a...
分类:
数据库 时间:
2014-07-01 11:20:37
阅读次数:
332
前两篇博客(多线程——继承Thread类,多线程——实现Runnable接口
)介绍了java使用线程的两种方法,这篇博客继续介绍第三种方法——实现Callable接口。
先说一下Runnable和Callable的区别:
1、Callable规定的方法是call(),Runnable规定的方法是run().
2、Callable的任务执行后可返回值,而Runnable的任务是不能...
分类:
编程语言 时间:
2014-07-01 08:25:19
阅读次数:
280
上篇博客(多线程——继承Thread类)介绍了java多线程的第一种实现方法——继承Thread类,这篇博客介绍第二种方法——实现Runnable接口,并实现run方法。
还用上篇博客的例子,现在用第二种方法实现。具体代码如下:
public class Test2 implements Runnable{
private String word;
public Test...
分类:
编程语言 时间:
2014-07-01 06:26:05
阅读次数:
466