自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 712

转载 Ruby的哲学

Ruby的哲学与Yukihiro Matsumoto的对话,第一部分Bill Venners著2003年9月29日摘要    Ruby程序设计语言的发明人Yukihiro Matsumoto与Bill Venners进行了一次谈话。谈话内容集中讨论了Ruby的设计哲学,包括设计的不完整性,正态危险性,以及人类在计算机科学发展商的重要作用。    在网络上以昵称"Matz,"著称的Yukihir

2009-04-24 23:09:00 502

原创 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 453

原创 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 547

原创 对象函数的指针

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 461

原创 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 463

原创 面试

 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 450

原创 小问题

 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 575

原创 坐标变换

2007-07-24 11:37:00 602

原创 小试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 692

原创 .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 740

原创 大地坐标换算

//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 2457

原创 接口多继承

#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 737

原创 续上

如果这样写Release和debug几乎一样了..看来是stl模版类的原因,不过相差也太大了吧...代码优化还是要参照Release,debug信不得......................................Point* ppoint = &points[0];for ( int cnt = 0; cnt {    ppoint[cnt] = p;}

2007-03-09 12:46:00 559

原创 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 1043

大地坐标计算

大地坐标正反算,换带。。有问题。。请发到jdelon@126.com

2007-09-07

大地坐标计算

大地坐标正反算,换带。。有问题。。请发到jdelon@126.com

2007-09-07

六参数变换

六参数变换

2007-07-24

四参数变换

四参数变换

2007-07-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除