热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

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

今天小编就为大家分享一篇关于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 
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:" <r <g <

运行结果:

r:255
g:255
b:0

总结

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


推荐阅读
  • 本文介绍了如何使用PHP向系统日历中添加事件的方法,通过使用PHP技术可以实现自动添加事件的功能,从而实现全局通知系统和迅速记录工具的自动化。同时还提到了系统exchange自带的日历具有同步感的特点,以及使用web技术实现自动添加事件的优势。 ... [详细]
  • Monkey《大话移动——Android与iOS应用测试指南》的预购信息发布啦!
    Monkey《大话移动——Android与iOS应用测试指南》的预购信息已经发布,可以在京东和当当网进行预购。感谢几位大牛给出的书评,并呼吁大家的支持。明天京东的链接也将发布。 ... [详细]
  • 基于layUI的图片上传前预览功能的2种实现方式
    本文介绍了基于layUI的图片上传前预览功能的两种实现方式:一种是使用blob+FileReader,另一种是使用layUI自带的参数。通过选择文件后点击文件名,在页面中间弹窗内预览图片。其中,layUI自带的参数实现了图片预览功能。该功能依赖于layUI的上传模块,并使用了blob和FileReader来读取本地文件并获取图像的base64编码。点击文件名时会执行See()函数。摘要长度为169字。 ... [详细]
  • HDU 2372 El Dorado(DP)的最长上升子序列长度求解方法
    本文介绍了解决HDU 2372 El Dorado问题的一种动态规划方法,通过循环k的方式求解最长上升子序列的长度。具体实现过程包括初始化dp数组、读取数列、计算最长上升子序列长度等步骤。 ... [详细]
  • 本文讨论了Alink回归预测的不完善问题,指出目前主要针对Python做案例,对其他语言支持不足。同时介绍了pom.xml文件的基本结构和使用方法,以及Maven的相关知识。最后,对Alink回归预测的未来发展提出了期待。 ... [详细]
  • 本文讨论了如何优化解决hdu 1003 java题目的动态规划方法,通过分析加法规则和最大和的性质,提出了一种优化的思路。具体方法是,当从1加到n为负时,即sum(1,n)sum(n,s),可以继续加法计算。同时,还考虑了两种特殊情况:都是负数的情况和有0的情况。最后,通过使用Scanner类来获取输入数据。 ... [详细]
  • 本文介绍了OC学习笔记中的@property和@synthesize,包括属性的定义和合成的使用方法。通过示例代码详细讲解了@property和@synthesize的作用和用法。 ... [详细]
  • 本文介绍了解决Netty拆包粘包问题的一种方法——使用特殊结束符。在通讯过程中,客户端和服务器协商定义一个特殊的分隔符号,只要没有发送分隔符号,就代表一条数据没有结束。文章还提供了服务端的示例代码。 ... [详细]
  • 在Android开发中,使用Picasso库可以实现对网络图片的等比例缩放。本文介绍了使用Picasso库进行图片缩放的方法,并提供了具体的代码实现。通过获取图片的宽高,计算目标宽度和高度,并创建新图实现等比例缩放。 ... [详细]
  • IhaveconfiguredanactionforaremotenotificationwhenitarrivestomyiOsapp.Iwanttwodiff ... [详细]
  • 开发笔记:加密&json&StringIO模块&BytesIO模块
    篇首语:本文由编程笔记#小编为大家整理,主要介绍了加密&json&StringIO模块&BytesIO模块相关的知识,希望对你有一定的参考价值。一、加密加密 ... [详细]
  • 本文介绍了如何找到并终止在8080端口上运行的进程的方法,通过使用终端命令lsof -i :8080可以获取在该端口上运行的所有进程的输出,并使用kill命令终止指定进程的运行。 ... [详细]
  • 本文介绍了九度OnlineJudge中的1002题目“Grading”的解决方法。该题目要求设计一个公平的评分过程,将每个考题分配给3个独立的专家,如果他们的评分不一致,则需要请一位裁判做出最终决定。文章详细描述了评分规则,并给出了解决该问题的程序。 ... [详细]
  • 本文介绍了C++中省略号类型和参数个数不确定函数参数的使用方法,并提供了一个范例。通过宏定义的方式,可以方便地处理不定参数的情况。文章中给出了具体的代码实现,并对代码进行了解释和说明。这对于需要处理不定参数的情况的程序员来说,是一个很有用的参考资料。 ... [详细]
  • 本文主要解析了Open judge C16H问题中涉及到的Magical Balls的快速幂和逆元算法,并给出了问题的解析和解决方法。详细介绍了问题的背景和规则,并给出了相应的算法解析和实现步骤。通过本文的解析,读者可以更好地理解和解决Open judge C16H问题中的Magical Balls部分。 ... [详细]
author-avatar
朴子字軒_755
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有