__builtin_prefetch() 是 gcc
的一个内置函数。它通过对数据手工预取的方法,减少了读取延迟,从而提高了性能,但该函数也需要 CPU 的支持。该函数的原型为:void
__builtin_prefetch (const void *addr, ...)其中参数 addr 是个内存...
分类:
其他好文 时间:
2014-04-28 06:59:12
阅读次数:
519
1.普通工厂模式package CommonFactory;public class Test {
public static void main(String[] args) { VehicleFactory factory = new
CarFactory(); ...
分类:
其他好文 时间:
2014-04-28 04:46:43
阅读次数:
427
1、起因最近发现程序中有一段控制TextBox数字输入的代码,相信大家都不会太陌生,如下:void
int_KeyPress(object sender, KeyPressEventArgs e){ const char Delete = (char)8;
if (!Char.IsDig...
分类:
其他好文 时间:
2014-04-28 04:01:42
阅读次数:
393
#includeusing namespace std;#define MAXN 1000000int
a[MAXN],b[MAXN]; //点的横纵坐标void TuBao(int x[MAXN],int y[MAXN],int n){ int
count1=0,count2=0; f...
分类:
其他好文 时间:
2014-04-28 03:10:03
阅读次数:
335
//: WIND2.CPP -- Inheritance &
upcasting#include enum note { middleC, Csharp, Cflat }; // Etc.class instrument
{public: void play(note) const { // ...
分类:
其他好文 时间:
2014-04-28 01:35:42
阅读次数:
1272
本人有一段代码关于"~"运算符 public class m{ public static
void main(String[] args){ int x=~5; System.out.println(x); ...
分类:
其他好文 时间:
2014-04-28 00:48:41
阅读次数:
326
#include class base {public: virtual void v() const
= 0; virtual void f() const = 0 { // 纯虚函数也有实现内容,但子类仍然必须实现这个虚函数 cout <<
"base::f()\n"; }};voi...
分类:
其他好文 时间:
2014-04-27 23:47:48
阅读次数:
561
局部变量:
在函数内部声明的变量为局部变量,局部变量的意思即该变量只存活在该函数中,假如该函数调用结束,那么该变量的寿命也结束了.举例:#includeusing
namespace std;void swap(int ,int );//两个参数变量可以省略int main(){ int x=...
分类:
编程语言 时间:
2014-04-27 22:20:36
阅读次数:
562
#includeusing namespace std;#define MAX 10000int
array[MAX]; //待排序数组const int MAXN=0x7fffffff;void Merge(int array[],int start,
int mid, int end) { .....
分类:
其他好文 时间:
2014-04-27 22:18:38
阅读次数:
484
思路利用VA_LIST可变参数,自定义欲提醒信息。 1 // 信息提示框 2 void
CDECL AlertBox(TCHAR *Format, ...) 3 { 4 TCHAR buf[1024]; 5 va_list pArglist; 6
va_start(pArgl...
分类:
其他好文 时间:
2014-04-27 21:34:07
阅读次数:
459