繁体   English   中英

c ++类中的指针数组

[英]array of pointer in c++ class

我想要一个类中的指针数组。 这是我尝试的代码。 但是我得到一个错误。

class Msg{
    public:
      char *msg[2]={
                   "one",
                   "two",
                    "three"
                 };

//there are some other methods I want to write.....
 };


void main(){
     Msg msg;
//  i want to print msg[] here using a for loop
}

但是它不能编译,并且在类中显示错误,我也想知道如何访问属于类成员的指针数组。 如果我输入错误,请更正语法。

edit:[i want to do]

我有大约12条固定消息,这些消息根据情况显示,我设置了一个枚举来获取正确的索引。

enum{
    size,
    area,
    volume,
    //etc 

};

class Msg有一个函数putMsg(int index)其中cout需要MSG当我通过一个枚举。 如果我通过area ,它将放一个味精,例如“根据您的等式计算的面积为:”,是否有更好的方法来进行此类消息传递。

尝试这个:

class Msg{
    public:

      // Can not initialize objects in the declaration part.
      // So just provide the declaration part.
      static char const *msg[];

      // Note: You had the completely wrong size for the array.
      //       Best to leave the size blank and let the compiler deduce it.

      // Note: The type of a string literal is 'char const*`

      // Note: I have made it static so there is only one copy.
      //       Since the strings are literals this should not affect usage
      //       But if you wanted one per class you need another technique.


    //there are some other method i want to write.....
};

// Now we can provide a definition.
// Note: I still leave the size blank and let the compiler deduce the size.
      char const* Msg::msg[]={
                   "one",
                   "two",
                    "three"
                 };  


// Note: main() must return an int.    
int  main(){
     Msg msg;
//  i want to print msg[] here using a for loop


    // The basic way
    for(std::size_t loop = 0;loop < sizeof(Msg::msg)/sizeof(Msg::msg[0]); ++loop)
    {
        std::cout << Msg::msg[loop] << "\n";
    }

    // Same as above but using C++11
    for(auto loop = std::begin(Msg::msg); loop != std::end(Msg::msg);++loop)
    {
        std::cout << *loop << "\n";
    }

    // using algorithms:
    std::copy(std::begin(Msg::msg), std::end(Msg::msg), std::ostream_iterator<char *const>(std::cout, "\n"));



     // Note: You don't actually need a return statement in main().
     //       If you don't explicitly provide one then 0 is returned.

}

这与它是一个指针数组(BTW并不是特别好用,请考虑使用std::vector<std::string> )无关,但是与您尝试初始化msg的方式msg 这是一个(非静态)成员变量,因此您必须在类的构造函数中初始化它,而不是在声明它的地方初始化它。

class Msg{
    public:
      char *msg[3];

      Msg()
        : msg{ "one"
             , "two"
             , "three" }
      {}

//there are some other method i want to write.....
 };

我怀疑,但我不能肯定地说(您尚未发布实际错误),您会收到“初始化程序错误太多”的信息

*msg[2]更改为*msg[3] 或将其保留为空白。 []

或删除“三个”。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM