五一放假,为了能够准时完成alpha版本,还在学校的小组成员仍奋斗在一线!小组计划在五月八号的22:20分发布内部测试版。计划在五月二十号的下午18:30发布beta版在此期间不间断地发布修改的beta版本计划在五月三十号的下午2:30发布release版
分类:
其他好文 时间:
2014-05-06 00:12:57
阅读次数:
265
GridView 一种是直接用simpleAdapt,另一种是自己写一个myAdapt
继承baseAdapt.这里是第二个例子。http://fonter.iteye.com/blog/781403package
com.grid.test;import java.util.ArrayList;i...
分类:
其他好文 时间:
2014-05-05 23:56:59
阅读次数:
357
可在结束仿真位置添加如下代码:assert false report "Simulation
is finished!" severity Failure;则在Modelsim run -all下自动终止并打印"Simulation is
finished!"。
分类:
其他好文 时间:
2014-05-05 23:41:00
阅读次数:
1045
// Test.cpp : 定义控制台应用程序的入口点。//#include
"../I_Timer.H"#include void onTimer1(){ std::cout createTimer();#if 1 auto
myTimer1 = /*Timer::createTime...
分类:
其他好文 时间:
2014-05-05 23:28:48
阅读次数:
341
Problem A: Random PermutationsTime Limit: 1
SecMemory Limit: 128 MB Submit: 91Solved: 54Description随机排列生成算法
(运行a.exe输出数字的个数,运行a.exe test时输出为一次随机的排列)In...
分类:
其他好文 时间:
2014-05-05 23:03:04
阅读次数:
341
using UnityEngine;using System.Collections;public
class Test : MonoBehaviour { public GameObject anObject ; private Camera cam ;
private Plan...
分类:
其他好文 时间:
2014-05-05 22:00:12
阅读次数:
357
1.默认的路由 -
base_routerhttp://test-server//index.php/{$app_name}/{$ctl_name}/{$act_name}/{$param_k1}/{$param_v1}/{$param_k2}/{$param_v2}/}app:
$app_name...
分类:
其他好文 时间:
2014-05-05 21:44:38
阅读次数:
235
int BOOST_LOCAL_FUNCTION(int x, int y) { // Local function.
return x + y;
} BOOST_LOCAL_FUNCTION_NAME(add)
BOOST_TEST(add(1, 2) == 3); // Local function call.
int BOOST_LOCAL_FUNCTION(void) ...
分类:
其他好文 时间:
2014-05-03 21:47:48
阅读次数:
332
本题就是测试读入数据的速度的。
如果有大量的数据读入,使用cin是很慢的。
那么使用scanf那么会快很多,但是如果数据量更大的话那么就还是不够快了。
所以这里使用fread。
首先开一个buffer,然后使用fread大块大块地读入数据就可以非常快地读入了。
题目如下:
Input
The input begins with two positive...
分类:
其他好文 时间:
2014-05-03 16:13:21
阅读次数:
340
上一篇讲的都是理论,下面我们亲自实践一下。
首先编写一个简单的java类:
public class Test
{
private int m;
private String str;
public int func(int m,String str)
{
str += "OK";
m = 10;...
分类:
其他好文 时间:
2014-05-03 15:59:28
阅读次数:
300