摘要: template<class T>class DArray{private: int m_nSize; T *m_pData; int m_nMax;public: DArray(); // 构造函数 DArray(int nSize);//带参数构造函数 ~ DArray(); // 析构函数 int Init(); // 初始化 int Free(); // 释放空间 int ClearValues(); // 向量所有元素置0 int Size(); // 获取向量的维数 int SetSize( int nSize); ... 阅读全文
posted @ 2011-11-03 16:32 xpxpxp111 阅读(263) 评论(0) 推荐(0)
摘要: Windows Azure定義Windows Azure是由微軟所發展的一套雲端運算作業系統,用來提供雲端線上服務所需要的作業系統與基礎儲存與管理的平台,是微軟的雲端運算的核心組成元件之一,以及微軟線上服務策略的一部份。具體查看http://zh.wikipedia.org/wiki/Windows_AzureWindows Azure Hello World在vs2010建立一個azure projectServiceDefinition.csdef<?xml version="1.0" encoding="utf-8"?><Serv 阅读全文
posted @ 2011-10-29 19:16 xpxpxp111 阅读(346) 评论(0) 推荐(0)
摘要: 根據msdn DefinitionAsynchronous server sockets use the .NET Framework asynchronous programming model to process network service requests. The Socket class follows the standard .NET Framework asynchronous naming pattern; for example, the synchronous Accept method corresponds to the asynchronous BeginAc 阅读全文
posted @ 2011-10-29 13:45 xpxpxp111 阅读(261) 评论(0) 推荐(0)
摘要: 根據msdn 里 trace point 定義為Tracepoints are a new way of using breakpoints. A tracepoint is a breakpoint with a custom action associated with it. When the tracepoint is hit, it causes the debugger to perform the specified action instead of (or in addition to) breaking program execution. 1 using System; 阅读全文
posted @ 2011-10-28 22:39 xpxpxp111 阅读(285) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2011-10-28 15:53 xpxpxp111 阅读(264) 评论(0) 推荐(1)