用C++来实现Binder服务比较麻烦,原因是没有AIDL的辅助,必须手工来写中间的代码. 首先写一个服务类ExampleServer的代码: class ExampleServer : public BnExampleServer { public : ExampleServer (): mValue(); int get () { return mValue; } void set (int x) { mValue = x; } private: int mValue; }; 服务类的代码简…