`
JasonRight
  • 浏览: 72490 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
需求是根据模板类生成一些类。 看了一篇帖子Ant+Freemarker+xml 生成Html , 生成的文件名只能和模板类同名。查了freemarker的文档,没有发现支持这个功能。 FMPP 能够完成这个任务。   Download fmpp_0.9.14.tar.gz   目 ...
@see http://forum.ubuntu.org.cn/viewtopic.php?f=42&t=154789&start=0 sudo usermod -a -G audio usrname.
1.按列位置排序     SELECT prod_id, prod_price,prod_name FROM products ORDER BY 2, 3; --2 refer to prod_price-- --3 refer to prod_name-- 2.BETWEEN 包含边界值     SELECT prod_price, prod_name FROM products WHERE prod_price BETWEEN 5 AND 10; --包含5和10-- 3.AND 优先于 or (不要使用默认优先级,始终使用括号)     SELECT pr ...
中文版xp安装Postgresql出现错误,   Problem running post-install step. Installation may not complete correctly. The database cluster initialisation failed.   需要先卸载,重装Postgresql然后在选“Local"时选“Chinese"而不是默认   @see http://www.cnzixue.com/html/OS/windows7/soft/2010/0413/6468.html
Enum的初始化顺序和一般的类不同 public enum Color { RED("Red"), BLACK("Black"), WHITE("White"); private static int field = initStaticField(); Color(String name) { System.out.println("Constructor: " + name); } private static int initStaticField() { ...
Arrays.ArrayList内部类没有重载add/remove方法

回调函数的用法

    博客分类:
  • c++
在要调用回调函数的类中声明: CallFun.h //返回类型为void, 参数类型为std::string typedef void(*PCALLBACKFunc) (std::string ); class CallFun{ private: PCALLBACKFunc m_pCallBack; public: void setCallBack(PCALLBACKFunc Func); void runCallBack(std::string strMsg); } CallFun.cpp void CallFun::se ...
class Shape class Triangle : public Shape 1.shared_ptr 定义类: typedef boost::shared_ptr<class Shape> ShapeSharedPtr; 实例化: ShapeSharedPtr shapeSP = ShapeSharedPtr(new Shape()); 定义数组: typedef boost::shared_ptr<std::vector<ShapeSharedPtr>> ShapeListSharedPtr; 辅助定义: typed ...
在全英文的XP中,在非unicode的程序中输入的中文会转为“??”。 通过截获WM_IME_COMPOSITION消息得到输入的字符串 ImmGetCompositionStringW得到Unicode WideCharToMultiByte转换为ANSI BOOL CchartestDlg::PreTranslateMessage(MSG* pMsg) { if (pMsg->message == WM_IME_COMPOSITION) { HIMC hIMC; HWND hWnd=pMsg->hwnd; DWORD dwSize; WC ...
Global site tag (gtag.js) - Google Analytics