C++使用初始化列表的方式来初始化字段的方法

几个月之前,接触Android recovery源代码的时候,看ScreenRecoveryUI类的时候,那时候C++基础还不是特别好,一直不明白以下的初始化方式:

下面这个是Recovery的一个构造函数,代码位于:screen_ui.cpp,它的类的实现在screen_ui.h。

如下这个ScreenRecoveryUI类,这个类是继承于RecoveryUI类的:

这个文件在screen_ui.h

class ScreenRecoveryUI : public RecoveryUI {
 public:
  ScreenRecoveryUI();
  void Init();
  void SetLocale(const char* locale);
  // overall recovery state ("background image")
  void SetBackground(Icon icon);
  // progress indicator
  void SetProgressType(ProgressType type);
  void ShowProgress(float portion, float seconds);
  void SetProgress(float fraction);
  void SetStage(int current, int max);
  // text log
  void ShowText(bool visible);
  bool IsTextVisible();
  bool WasTextEverVisible();
  // printing messages
  void Print(const char* fmt, ...) __printflike(2, 3);
  void ShowFile(const char* filename);
  // menu display
  void StartMenu(const char* const * headers, const char* const * items,
          int initial_selection);
  int SelectMenu(int sel);
  void EndMenu();
  void KeyLongPress(int);
  void Redraw();
  enum UIElement {
    HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL, INFO
  };
  void SetColor(UIElement e);
 private:
  Icon currentIcon;
  int installingFrame;
  const char* locale;
  bool rtl_locale;
  pthread_mutex_t updateMutex;
  GRSurface* backgroundIcon[5];
  GRSurface* backgroundText[5];
  GRSurface** installation;
  GRSurface* progressBarEmpty;
  GRSurface* progressBarFill;
  GRSurface* stageMarkerEmpty;
  GRSurface* stageMarkerFill;
  ProgressType progressBarType;
  float progressScopeStart, progressScopeSize, progress;
  double progressScopeTime, progressScopeDuration;
  // true when both graphics pages are the same (except for the progress bar).
  bool pagesIdentical;
  size_t text_cols_, text_rows_;
  // Log text overlay, displayed when a magic key is pressed.
  char** text_;
  size_t text_col_, text_row_, text_top_;
  bool show_text;
  bool show_text_ever;  // has show_text ever been true?
  char** menu_;
  const char* const* menu_headers_;
  bool show_menu;
  int menu_items, menu_sel;
  // An alternate text screen, swapped with 'text_' when we're viewing a log file.
  char** file_viewer_text_;
  pthread_t progress_thread_;
  int animation_fps;
  int installing_frames;
  int iconX, iconY;
  int stage, max_stage;
  void draw_background_locked(Icon icon);
  void draw_progress_locked();
  void draw_screen_locked();
  void update_screen_locked();
  void update_progress_locked();
  static void* ProgressThreadStartRoutine(void* data);
  void ProgressThreadLoop();
  void ShowFile(FILE*);
  void PutChar(char);
  void ClearText();
  void DrawHorizontalRule(int* y);
  void DrawTextLine(int* y, const char* line, bool bold);
  void DrawTextLines(int* y, const char* const* lines);
  void LoadBitmap(const char* filename, GRSurface** surface);
  void LoadBitmapArray(const char* filename, int* frames, GRSurface*** surface);
  void LoadLocalizedBitmap(const char* filename, GRSurface** surface);
};

下面是这个类的构造函数的实现,其中构造函数就采用了初始化列表的方式来初始化字段,以下构造函数的实现在screen_ui.cpp文件中可以找到。

ScreenRecoveryUI::ScreenRecoveryUI() :
  currentIcon(NONE),
  installingFrame(0),
  locale(nullptr),
  rtl_locale(false),
  progressBarType(EMPTY),
  progressScopeStart(0),
  progressScopeSize(0),
  progress(0),
  pagesIdentical(false),
  text_cols_(0),
  text_rows_(0),
  text_(nullptr),
  text_col_(0),
  text_row_(0),
  text_top_(0),
  show_text(false),
  show_text_ever(false),
  menu_(nullptr),
  show_menu(false),
  menu_items(0),
  menu_sel(0),
  file_viewer_text_(nullptr),
  animation_fps(20),
  installing_frames(-1),
  stage(-1),
  max_stage(-1) {
  for (int i = 0; i < 5; i++) {
    backgroundIcon[i] = nullptr;
  }
  pthread_mutex_init(&updateMutex, nullptr);
}

可以来看看RecoveryUI类:

在ui.h中:

class RecoveryUI {
 public:
  RecoveryUI();
  virtual ~RecoveryUI() { }
  // Initialize the object; called before anything else.
  virtual void Init();
  // Show a stage indicator. Call immediately after Init().
  virtual void SetStage(int current, int max) = 0;
  // After calling Init(), you can tell the UI what locale it is operating in.
  virtual void SetLocale(const char* locale) = 0;
  // Set the overall recovery state ("background image").
  enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR };
  virtual void SetBackground(Icon icon) = 0;
  // --- progress indicator ---
  enum ProgressType { EMPTY, INDETERMINATE, DETERMINATE };
  virtual void SetProgressType(ProgressType determinate) = 0;
  // Show a progress bar and define the scope of the next operation:
  //  portion - fraction of the progress bar the next operation will use
  //  seconds - expected time interval (progress bar moves at this minimum rate)
  virtual void ShowProgress(float portion, float seconds) = 0;
  // Set progress bar position (0.0 - 1.0 within the scope defined
  // by the last call to ShowProgress).
  virtual void SetProgress(float fraction) = 0;
  // --- text log ---
  virtual void ShowText(bool visible) = 0;
  virtual bool IsTextVisible() = 0;
  virtual bool WasTextEverVisible() = 0;
  // Write a message to the on-screen log (shown if the user has
  // toggled on the text display).
  virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0;
  virtual void ShowFile(const char* filename) = 0;
  // --- key handling ---
  // Wait for a key and return it. May return -1 after timeout.
  virtual int WaitKey();
  virtual bool IsKeyPressed(int key);
  virtual bool IsLongPress();
  // Returns true if you have the volume up/down and power trio typical
  // of phones and tablets, false otherwise.
  virtual bool HasThreeButtons();
  // Erase any queued-up keys.
  virtual void FlushKeys();
  // Called on each key press, even while operations are in progress.
  // Return value indicates whether an immediate operation should be
  // triggered (toggling the display, rebooting the device), or if
  // the key should be enqueued for use by the main thread.
  enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE };
  virtual KeyAction CheckKey(int key, bool is_long_press);
  // Called when a key is held down long enough to have been a
  // long-press (but before the key is released). This means that
  // if the key is eventually registered (released without any other
  // keys being pressed in the meantime), CheckKey will be called with
  // 'is_long_press' true.
  virtual void KeyLongPress(int key);
  // Normally in recovery there's a key sequence that triggers
  // immediate reboot of the device, regardless of what recovery is
  // doing (with the default CheckKey implementation, it's pressing
  // the power button 7 times in row). Call this to enable or
  // disable that feature. It is enabled by default.
  virtual void SetEnableReboot(bool enabled);
  // --- menu display ---
  // Display some header text followed by a menu of items, which appears
  // at the top of the screen (in place of any scrolling ui_print()
  // output, if necessary).
  virtual void StartMenu(const char* const * headers, const char* const * items,
              int initial_selection) = 0;
  // Set the menu highlight to the given index, wrapping if necessary.
  // Returns the actual item selected.
  virtual int SelectMenu(int sel) = 0;
  // End menu mode, resetting the text overlay so that ui_print()
  // statements will be displayed.
  virtual void EndMenu() = 0;
protected:
  void EnqueueKey(int key_code);
private:
  // Key event input queue
  pthread_mutex_t key_queue_mutex;
  pthread_cond_t key_queue_cond;
  int key_queue[256], key_queue_len;
  char key_pressed[KEY_MAX + 1];   // under key_queue_mutex
  int key_last_down;         // under key_queue_mutex
  bool key_long_press;        // under key_queue_mutex
  int key_down_count;        // under key_queue_mutex
  bool enable_reboot;        // under key_queue_mutex
  int rel_sum;
  int consecutive_power_keys;
  int last_key;
  bool has_power_key;
  bool has_up_key;
  bool has_down_key;
  struct key_timer_t {
    RecoveryUI* ui;
    int key_code;
    int count;
  };
  pthread_t input_thread_;
  void OnKeyDetected(int key_code);
  static int InputCallback(int fd, uint32_t epevents, void* data);
  int OnInputEvent(int fd, uint32_t epevents);
  void ProcessKey(int key_code, int updown);
  bool IsUsbConnected();
  static void* time_key_helper(void* cookie);
  void time_key(int key_code, int count);
};
ui.cpp中,也是采用字段初始化的方式来实现构造函数:
RecoveryUI::RecoveryUI()
    : key_queue_len(0),
     key_last_down(-1),
     key_long_press(false),
     key_down_count(0),
     enable_reboot(true),
     consecutive_power_keys(0),
     last_key(-1),
     has_power_key(false),
     has_up_key(false),
     has_down_key(false) {
  pthread_mutex_init(&key_queue_mutex, nullptr);
  pthread_cond_init(&key_queue_cond, nullptr);
  memset(key_pressed, 0, sizeof(key_pressed));
}

现在看明白了。

写一个测试案例看看就懂了,果然一例解千愁啊!

#include <iostream>
using namespace std ;
class ScreenRecoveryUI
{
 private :
 int r , g , b ;
 char buffer[10] ;
 char *p ;
 public :
 ScreenRecoveryUI();
 void setvalue(int a , int b , int c);
 void print();
};
//使用初始化列表的方式初始化构造函数里的私有环境变量
ScreenRecoveryUI::ScreenRecoveryUI():
 r(0),
 g(0),
 b(0),
 p(nullptr){
 for(int i = 0 ; i < 10 ; i++){
 buffer[i] = 0 ;
 }
}
void ScreenRecoveryUI::setvalue(int a ,int b , int c)
{
 this->r = a ;
 this->g = b ;
 this->b = c ;
}
void ScreenRecoveryUI::print()
{
 cout << "r:" << this->r << endl << "g:" << this->g << endl << "b:" << b << endl ;
}
int main(void)
{
 ScreenRecoveryUI screen ;
 screen.setvalue(255,255,0);
 screen.print();
 return 0 ;
}

运行结果:

r:255
g:255
b:0

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。如果你想了解更多相关内容请查看下面相关链接

(0)

相关推荐

  • 解决C++全局变量只能初始化不能赋值的问题

    C++中,全局变量只能声明.初始化,而不能赋值 也就是说,下面这样是不被允许的: #include <cstdio> using namespace std; int a; a = 2; int main() { return 0; } 错误提示是: C++ requires a type specifier for all declarations 声明.初始化与赋值的区别: 声明:int a; 初始化:int a = 2;(在声明的时候顺带赋值叫做初始化) 赋值:a = 2; 只有定义(i

  • C++初始化列表学习

    何谓初始化列表与其他函数不同,构造函数除了有名字,参数列表和函数体之外,还可以有初始化列表,初始化列表以冒号开头,后跟一系列以逗号分隔的初始化字段.在C++中,struct和class的唯一区别是默认的克访问性不同,而这里我们不考虑访问性的问题,所以下面的代码都以struct来演示. 复制代码 代码如下: struct foo{    string name ;    int id ;    foo(string s, int i):name(s), id(i){} ; // 初始化列表}; 构

  • C++中静态初始化数组与动态初始化数组详解

    静态初始化的数组的长度必须是在程序中确定的常数,不能是由用户输入的变量 例子: int a[10];//正确 Student stud[10];//正确:Student是一个学生类 int n;cin>>n;int a[n];//错误 int n;cin>>n;Student stud[n];//错误:Student是一个学生类 动态初始化数组可以使用用户输入的变量作为数组的长度. 例子: int n; cin>>n; int *a=new int[n];//这样整数数

  • C++中各种初始化方式示例详解

    前言 本文主要给大家介绍了关于C++初始化方式的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧. C++小实验测试:下面程序中main函数里a.a和b.b的输出值是多少? #include <iostream> struct foo { foo() = default; int a; }; struct bar { bar(); int b; }; bar::bar() = default; int main() { foo a{}; bar b{}; std::co

  • 成员初始化列表与构造函数体中的区别详细解析

    论坛中回答一个别人问题 C++ Primer中在讲构造函数初始化列表的时候有这么一段话:无论是在构造函数初始化列表中初始化成员,还是在构造函数体中对它们赋值,最终结果是相同的.不同之处在于,使用构造函数初始化列表的版本初始化数据成员,没有定义初始化列表的构造函数版本在构造函数体中对数据成员赋值. 请问这里的初始化数据成员与对数据成员赋值的含义是什么?有什么区别? 我知道在数据成员有默认构造函数时是有不同的,但对其他类型的成员呢?其他类型成员的初始化和赋值有区别吗?================

  • C++ 初始化列表详解及实例代码

    C++ 初始化列表 何谓初始化列表 与其他函数不同,构造函数除了有名字,参数列表和函数体之外,还可以有初始化列表,初始化列表以冒号开头,后跟一系列以逗号分隔的初始化字段.在C++中,struct和class的唯一区别是默认的访问性不同,而这里我们不考虑访问性的问题,所以下面的代码都以struct来演示. struct foo { string name ; int id ; foo(string s, int i):name(s), id(i){} ; // 初始化列表 }; 构造函数的两个执行

  • c++基础语法:构造函数初始化列表

    C++为类中提供类成员的初始化列表 类对象的构造 顺序是这样的:1.分配内存,调用构造函数 时,隐式/显示的初始化各数据 成员2.进入构造函数后在构造函数中执行一般计算 使用初始化列表有两个原因: 1.必须这样做:如果我们有一个类成员,它本身是一个类或者是一个结构,而且这个成员它只有一个带参数的构造函数,而没有默认构造函数,这时要对这个类成员进行初始化,就必须调用这个类成员的带参数的构造函数,如果没有初始化列表,那么他将无法完成第一步,就会报错. 复制代码 代码如下: class  ABC  .

  • c++ 构造函数的初始化列表

    首先,运行下图中的C++代码,输出是什么? 复制代码 代码如下: class A{private: int n1; int n2;public: A(): n2(0) , n1(n2 + 2) { } void Print() {  cout<<"n1:"<<n1<<",n2:"<<n2<<endl; }};int main(void){ A a; a.Print(); return 0;} 答案:输出n1

  • C++ 11新特性之大括号初始化详解

    本文主要给大家介绍了关于C++11新特性之大括号初始化的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍: C++11之前,C++主要有以下几种初始化方式: //小括号初始化 string str("hello"); //等号初始化 string str="hello"; //大括号初始化 struct Studnet{ char* name; int age; }; Studnet s={"dablelv",18}; //

  • 关于C++类的成员初始化列表的相关问题

    在以下四中情况下,要想让程序顺利编译,必须使用成员初始化列表(member initialization list): 1,初始化一个引用成员(reference member): 2,初始化一个常量对象(const member); 3,调用一个基类的构造函数,且该基类的构造函数有一组参数: 4,调用一个成员类(member class)的构造函数,且该构造函数有一组参数 这四种情况程序可以正常编译,但是效率有所欠缺(下面会具体说到). class Word{ String _name; in

随机推荐