用C ++调用函数

时间:2012-11-21 04:41:04

标签: c++ class function

我试图在C ++中调用一个函数,我认为它与C中的相同,但是当我尝试将C程序转换为C ++时,我遇到了一个错误,它表示函数未声明。

这是我的班级:

class contacts
 {
  private:;
          char *First_Name;
          char *Last_Name;
          char *home;
          char *cell;
  public:;
  //constructor
         contacts()
         {
         }  
//Function declaration     
void readfile (contacts*friends ,int* counter, int i,char buffer[],FILE*read,char user_entry3[]);

  };

以下是我的菜单功能的信息:

 if(user_entry1==1)
  {
    printf("Please enter a file name");
    scanf("%s",user_entry3); 
    read=fopen(user_entry3,"r+");

   //This is the "undeclared" function
   readfile(friends ,counter,i,buffer,read,user_entry3);
   }else;

我显然做错了什么,但每次我尝试编译时都会readfile undeclared(first use this function)我在这里做错了什么?

4 个答案:

答案 0 :(得分:2)

您需要创建contacts类的对象,然后在该对象上调用readfile。像这样: contacts c; c.readfile();

答案 1 :(得分:0)

课程contacts内的“菜单”功能是?你设计它的方式,它只能在类的实例上调用。您有完全基于 readfilecontacts

的含义的选项

我猜测功能读取所有联系人而不只是1个联系人,这意味着它可以成为静态功能

static void readfile(... ;

并致电

contacts::readfile(...;

或者如果您不需要直接访问类的内部,您可以在类之外声明(作为自由函数,类似于普通的C函数)和完全按照你现在的使用方式使用。这实际上是编译器在遇到代码时搜索的内容。

另外,我建议您重命名class contacts - > class contact因为看起来对象每个只保存一个人的联系信息。

答案 2 :(得分:0)

我建议重构以使用STL向量。

#include <vector>
#include <ReaderUtil>

using namespace std;

vector< contact > myContactCollection;
myContactCollection.push_back( Contact("Bob",....) );
myContactCollection.push_back( Contact("Jack",....) );
myContactCollection.push_back( Contact("Jill",....) );

或者...

myContactCollection = ReaderClass::csvparser(myFile);

其中

ReaderClass::csvparser(std::string myFile) returns vector<Contact>

答案 3 :(得分:0)

由于您的readfile函数位于contacts类中,因此上面的答案在技术上是正确的,因为您需要创建对象的实例然后调用该函数。但是,从OO的角度来看,您的类函数通常只应对包含它的类的对象的成员进行操作。你在这里所拥有的更像是一个通用函数,它接受多种类型的参数,并且只有一个是指向类本身包含你正在调用的函数的类的指针,如果你认为它有点奇怪。所以你会将一个指向该类的指针传递给该类的成员函数,该函数需要两个实例。您不能将类视为指向结构的指针的简单替换。由于这是一个类,因此您需要将所需的所有变量声明为类的成员,因此不需要将它们作为参数传递(类的一个主要点是将一般数据与类成员数据隔离)。这是一个应该指向正确方向的更新。

   class contacts
     {
      private:

          char *First_Name;
          char *Last_Name;
          char *home;
          char *cell;
          FILE *read;  // these all could also be declared as a stack variable in 'readfile'


    public:
    //constructor

    contacts()
        {
        }  

    //destruction
    ~contacts()
    {
    }

    //Function declaration     
    int contacts::readfile (char * userEnteredFilename);

    };


    contacts myContact = new contacts();

    printf("Please enter a file name");
    scanf("%s",user_entry3); 

    int iCount = myContact->readfile(user_entry3);

    // the readfile function should contain all of the file i/O code