1. virtual method or not:

  1. It’s better to declare all cpp member methods without “virtual” keyword;
  2. But when you’re writing a cpp header file, please check if any methods of the parent class are overrided by your current work. Make sure to change them into virtual methods;
  3. If you inherit a virtual method from parent class, make sure that it inherits the “virtual” keyword.

2. methods of public/protected/private:

  1. By default, declare all member methods as “public” ;
  2. If any of the folowing conditions is satisfied, the method must be private;
    • this method is declared in .m file;
    • this method is in a category named “private”;

3. member variables of public/protected/private:

  1. Declare all member variables as “protected”, without any other choice

4. two-phase construction

  1. HOW TO:
    • 1st-phase: set default value for all member variables in the constructor initialization list. But don’t do write any logic init in the constructor.
    • 2nd-phase: write logic init in a “CMyClass* init(…)” function. If the init failed, return NULL.
  2. WHY:
    • We decided to abandon the usage of try-catch exception mechanism in C++. Do this to reduce the footprint and binary size. As the result, any exception occurring in C++ construction will not be reported to the invoker.
  3. WHEN:
    • two-phase construction isn’t force to implement in each class, but just for those classes who have logic step in initialization. In the other words, writing logical initialization in constructor IS FORBIDDEN, especially the situation may return false.
  4. FOR INVOKERS:
    • If the class you will invoke has a “bool init(…)” function, call it immediately after construction.

1#define CCX_BREAK_IF(cond) if(cond) break;

2#define CCX_SAFE_DELETE(p) if(p) {delete (p); (p) = NULL;}

3

// declaration

5class CCar

6{

public:

8 CCar();

9 bool init();

10 virtual ~CCar();

11

protected:

13 CEngine* m_pEngine;

14 bool m_bStarted;

15 bool m_bLocked;

16};

17

// 1st-phase construction

// only set the default value & alloc memory

20CCar::CCar()

21:m_pEngine(new CEngine)

22,m_bStarted(false)

23,m_bLocked(true)

24{

printf(“CCar constructor\n”);

26}

27

// 2st-phase construction

// do logical initialization

30bool CCar::init()

31{

32 bool bRet = false;

33

34 do

35 {

36 m_bLocked = false;

37

38 CCX_BREAK_IF( !m_pEngine ); // defensive

39 CCX_BREAK_IF( !m_pEngine->start() ); // logic

40

41 // success

42 bRet = true;

43

44 } );

45

46 printf(“CCar init\n”);

47 return bRet;

48}

49

// destruction

51CCar::~CCar()

52{

53 if (m_pEngine)

54 {

55 delete m_pEngine;

56 m_pEngine = NULL;

57 }

58

printf(“CCar destructor\n”);

60}

61

// invoker

63int _tmain(int argc, _TCHAR* argv[])

64{

// in heap

66 CCar* pCar = new CCar;

67 if (!pCar->init())

68 {

69 CCX_SAFE_DELETE(pCar);

70 }

71

// in stack

73 CCar car;

74 if (!car.init())

75 {

76 // do sth.

77 }

78

79 ;

80}

download sample code: attachment:TwoPhaseConstruction.zip This project is tested in win32 enviroment via VS2008

5. property of objc

/** CCX_PROPERTY_READONLY is used to declare a protected variable.

We can use get method to read the variable.

@param varType : the type of variable.

@param varName : variable name.

@param funName : “get + funName” is the name of the get method.

@warning : The get method is a public virtual function, you should override it first.

The variables and methods declared after CCX_PROPERTY_READONLY are all public.

If you need protected or private, please declare.

9*/

10#define CCX_PROPERTY_READONLY(varType, varName, funName)\

11 protected: varType varName;\

12 public: virtual varType get##funName(void);

13

/** CCX_PROPERTY is used to declare a protected variable.

We can use get method to read the variable, and use the set method to change the variable.

@param varType : the type of variable.

@param varName : variable name.

@param funName : “get + funName” is the name of the get method.

“set + funName” is the name of the set method.

@warning : The get and set methods are public virtual functions, you should override them first.

The variables and methods declared after CCX_PROPERTY are all public.

If you need protected or private, please declare.

23*/

24#define CCX_PROPERTY(varType, varName, funName)\

25 protected: varType varName;\

26 public: virtual varType get##funName(void);\

27 public: virtual void set##funName(varType var);

28

/** CCX_SYNTHESIZE_READONLY is used to declare a protected variable.

We can use get method to read the variable.

@param varType : the type of variable.

@param varName : variable name.

@param funName : “get + funName” is the name of the get method.

@warning : The get method is a public inline function.

The variables and methods declared after CCX_SYNTHESIZE_READONLY are all public.

If you need protected or private, please declare.

37*/

38#define CCX_SYNTHESIZE_READONLY(varType, varName, funName)\

39 protected: varType varName;\

40 public: inline varType get##funName(void){ return varName; }

41

/** CCX_SYNTHESIZE is used to declare a protected variable.

We can use get method to read the variable, and use the set method to change the variable.

@param varType : the type of variable.

@param varName : variable name.

@param funName : “get + funName” is the name of the get method.

“set + funName” is the name of the set method.

@warning : The get and set methods are public inline functions.

The variables and methods declared after CCX_SYNTHESIZE are all public.

If you need protected or private, please declare.

51*/

52#define CCX_SYNTHESIZE(varType, varName, funName)\

53 protected: varType varName;\

54 public: inline varType get##funName(void){ return varName; }\

55 public: inline void set##funName(varType var){ varName = var; }

6. id

some functions in objc return “id”, translate to cpp, we return this “bool” instead. In objc, you can write code just like [[MyClass alloc] init] autorelease]. you don’t mind if init failed and return nil, in that case [nil autorelease] will not crash the programe. But in cpp, we return bool to prevent developers write pClass = (new MyClass())->init()->foo(). If init failed and return null, null->fool() will crash and jump out the program in cpp. In the other hand, if the return value of foo() isn’t MyClass*, for example, return bool, and the invoker will lost the pointer of “new MyClass” then can’t delete it from heap. That’s dangerous.

@interface CTest

-(id) foo();

must be translated to

class CTest

{

bool foo();

}

Moving From Objective-C to C++的更多相关文章

  1. Automake

    Automake是用来根据Makefile.am生成Makefile.in的工具 标准Makefile目标 'make all' Build programs, libraries, document ...

  2. Artistic Style 3.1 A Free, Fast, and Small Automatic Formatter for C, C++, C++/CLI, Objective‑C, C#, and Java Source Code

    Artistic Style - Index http://astyle.sourceforge.net/ Artistic Style 3.1 A Free, Fast, and Small Aut ...

  3. Moving Computation is Cheaper than Moving Data

    https://hadoop.apache.org/docs/r1.2.1/hdfs_design.html Introduction The Hadoop Distributed File Syst ...

  4. [LeetCode] Moving Average from Data Stream 从数据流中移动平均值

    Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...

  5. Moving Average from Data Stream

    Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...

  6. 卡通图像变形算法(Moving Least Squares)附源码

    本文介绍一种利用移动最小二乘法来实现图像变形的方法,该方法由用户指定图像中的控制点,并通过拖拽控制点来驱动图像变形.假设p为原图像中控制点的位置,q为拖拽后控制点的位置,我们利用移动最小二乘法来为原图 ...

  7. Objective C中的ARC的修饰符的使用---- 学习笔记九

    #import <Foundation/Foundation.h> @interface Test : NSObject /** * 默认的就是__strong,这里只是做示范,实际使用时 ...

  8. Objective的字符串拼接 似乎没有Swift方便,但也可以制做一些较为方便的写法

    NSString *str1 = @"字符串1"; NSString *str2 = @"字符串2"; //在同样条件下,Objective的字符串拼接 往往只 ...

  9. LeetCode Moving Average from Data Stream

    原题链接在这里:https://leetcode.com/problems/moving-average-from-data-stream/ 题目: Given a stream of integer ...

  10. [转] 从 C 到 Objective C 入门1

    转自: http://blog.liuhongwei.cn/iphone/objective-c/ 进军iPhone开发,最大的难点之一就是怪异的Objective C语法了.不过,了解之后才发现,原 ...

随机推荐

  1. 异常处理 Exception

    一.异常类 1.在C#中所有的异常都是使用一个异常类型的示例对象表示的,这些异常类型都是继承自System.Exception类型,或者直接使用System.Exception类型的实例对象: 2.在 ...

  2. Button的四种Click响应方法

    Button用得挺多的,在这整理了下它的事件处理方法,发现实现方法还不少,我比较喜欢第二种,你呢,最常用哪一种? 实现一: Button bt_Demo = (Button)findViewById( ...

  3. log4j和web.xml配置webAppRootKey 的问题

    在tomcat下部署两个或多个项目时,web.xml文件中最好定义webAppRootKey参数,如果不定义,将会缺省为“webapp.root”,如下: <!-- 应用路径 --> &l ...

  4. HDU 5634 Rikka with Phi 线段树

    题意:bc round 73 div1 D 中文题面 分析:注意到10^7之内的数最多phi O(log(n))次就会变成1, 因此可以考虑把一段相同的不为1的数缩成一个点,用平衡树来维护. 每次求p ...

  5. MVC框架模式技术实例(用到隐藏帧、json、仿Ajax、Dom4j、jstl、el等)

    前言: 刚刚学完了MVC,根据自己的感悟和理解写了一个小项目. 完全按照MVC模式,后面有一个MVC的理解示意图. 用MVC模式重新完成了联系人的管理系统: 用户需求: 多用户系统,提供用户注册.登录 ...

  6. uva 11178

    题意:根据A,B,C三点的位置确定D,E,F三个点的位置. 贴模板 #include<cstdio> #include<cmath> #include<cstring&g ...

  7. 2.3CUDA矩阵乘法

    CPU 矩阵乘法 能相乘的两个矩阵,必须满足一个矩阵的行数和第二个矩阵的列数相同. A(N*P) * B(P*M) = C(N*M). 其中P是行数,N是列数, 从宽高的角度来说,即 A的宽度和B的高 ...

  8. IComparer接口与

    IComparable比较接口,继承此接口可对lis<T>调用sort进行排序 或者调用sort时可以为sort方法提供继承了IComparer的比较器

  9. about云资源汇总指引V1.4:包括hadoop,openstack,nosql,虚拟化

    hadoop资料 云端云计算2G基础课程 (Hadoop简介.安装与范例) 炼数成金3G视频分享下载 虚拟机三种网络模式该如何上网指导此为视频 Hadoop传智播客七天hadoop(3800元)视频, ...

  10. tomcat 7 用户设置

    在tomcat/conf/tomcat-users.xml加入如下脚本就可以了 <role rolename="admin-gui"/> <role rolena ...