- 博客(15)
- 资源 (4)
- 收藏
- 关注
原创 flex ItemRenderer 模版组件事件
<!--[CDATA[ import flash.net.navigateToURL; [Bindable] private var dataProvider:Array = null; private function Init():void { dataProvider = [{url0:http://www.sin
2009-04-27 13:01:00
741
转载 Ruby的哲学
Ruby的哲学与Yukihiro Matsumoto的对话,第一部分Bill Venners著2003年9月29日摘要 Ruby程序设计语言的发明人Yukihiro Matsumoto与Bill Venners进行了一次谈话。谈话内容集中讨论了Ruby的设计哲学,包括设计的不完整性,正态危险性,以及人类在计算机科学发展商的重要作用。 在网络上以昵称"Matz,"著称的Yukihir
2009-04-24 23:09:00
534
原创 XML解析
#include "stdafx.h"#include #include #include #include class XMLNode{public: XMLNode() { } const wchar_t* GetName() { return this->m_name.c_str(); } const wchar_t*
2009-04-10 15:46:00
477
原创 HTML 解析
#include "stdafx.h"#include #include #include #include class HtmlNode{public: HtmlNode() { } const wchar_t* GetName() { return this->m_name.c_str(); } const wchar_t* Get
2009-04-06 21:03:00
582
原创 对象函数的指针
class Base;typedef void (Base::*FUN)();typedef void (Base::*FUN_I)(int);class Base{public: void BaseFun() { std::cout << "BaseFun" << std::endl; }};class Cls : public Base{p
2009-02-23 16:57:00
496
原创 Linux Shell
1.rmrm filenamerm -r dir2.cpcp filename dircp -r dir dir3.lsls -lls |more4.mvmv oldname newname5.touchtouch filename6.passwdpasswd username7.useradduseradd username
2008-12-13 23:42:00
488
原创 面试
1.2008.02.28 方正国际 C++struct Node{ int value; Node* pLeft; Node* pRight;};void AppendValue(Node* pRoot, int value){ if ( pRoot ) { if ( pRoot->value > value ) { if ( pRoot->pLeft ) { A
2008-02-28 15:51:00
474
原创 小问题
1.字符ch转换为数字nch nch = ch - 0; nch = ch&0xf;2.HKEY_CLASSES_ROOT/.extfilename = AppName.version.extfilename HKEY_CLASSES_ROOT/AppName.version.extfilename/shell/open/command = appdir/AppName.EXE
2007-08-23 13:10:00
603
原创 小试sse
//vs.net 2003 p4 3.0G,512MB#include "stdafx.h"#include xmmintrin.h>#include "windows.h"template class Type >struct Rectt...{ Type x; Type y; Type right; Type bottom;;};typedef __declsp
2007-03-22 09:15:00
725
原创 .net 平台调用
总结:1.参数传递@param [in] ellipsoid 指针@param [in] prj 指针@param [in] uPnts 数组指针@param [in] count 简单类型@param [in] blCoords 传出数组指针extern "C" GEO_API void __stdcall GaussProjInvert(const El
2007-03-14 12:47:00
771
原创 大地坐标换算
//Coords.h#ifndef __HEADER_COORDS_GEO__#define __HEADER_COORDS_GEO__namespace Geo...{/**//*** 直角坐标点**/struct UPnt ...{ /**//** * x 坐标值 **/ double x; /**//** * y 坐标值 **/ doubl
2007-03-14 10:00:00
2496
原创 接口多继承
#include "stdafx.h"class Inter...{public: virtual void* GetInter(int i) =0;};class In0...{public: virtual void P0() =0;};class In1...{public: virtual void P1() =0;};class Imp : public Inter
2007-03-12 09:10:00
762
原创 续上
如果这样写Release和debug几乎一样了..看来是stl模版类的原因,不过相差也太大了吧...代码优化还是要参照Release,debug信不得......................................Point* ppoint = &points[0];for ( int cnt = 0; cnt { ppoint[cnt] = p;}
2007-03-09 12:46:00
581
原创 Release 版比 Debug 快近100倍(Vc.net2003),开销在哪里
#include "stdafx.h"#include "windows.h"#include "time.h"#include #include struct Point{ int x; int y;};int _tmain(int argc, _TCHAR* argv[]){ Point p= {0,0}; int
2007-03-09 10:20:00
1094
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人