在我的程序中,记录*和数据库*之间的区别是什么?

In my program what is the difference between Record* and Databse*?

本文关键字:之间 区别 是什么 数据库 程序 记录 我的      更新时间:2023-10-16

我正在使用Dev c++编译器。所以,这里有什么问题,我在addRecord模块中得到错误。

编译日志:

Compiler: Default compiler
Executing  g++.exe...
g++.exe "C:SAI,MANItest_add(09.03.2013).cpp" -o "C:UsersRavithejaDesktopC and C++ProjectsSAI,MANItest_add(09.03.2013).exe"   -O3 -g3 
-I"C:Dev-Cpplibgccmingw323.4.2include"  -I"C:Dev-Cppincludec++3.4.2backward"  -I"C:Dev-Cppincludec++3.4.2mingw32"  -I"C:Dev-Cppincludec++3.4.2"  -I"C:Dev-Cppinclude"   -L"C:Dev-Cpplib" -g3 
C:SAI,MANItest_add(09.03.2013).cpp: In function `void addRecord(Record*)':
C:SAI,MANItest_add(09.03.2013).cpp:151: error: using typedef-name `Record' after `struct'
C:SAI,MANItest_add(09.03.2013).cpp:151: error: cannot convert `Record*' to `Database*' in assignment
C:SAI,MANItest_add(09.03.2013).cpp:153: error: expected primary-expression before '*' token
C:SAI,MANItest_add(09.03.2013).cpp:153: error: expected primary-expression before ')' token
C:SAI,MANItest_add(09.03.2013).cpp:153: error: expected `;' before "malloc"
C:SAI,MANItest_add(09.03.2013).cpp:154: error: cannot convert `Record*' to `Database*' in assignment
C:SAI,MANItest_add(09.03.2013).cpp: In function `void viewRecords(Record*)':
C:SAI,MANItest_add(09.03.2013).cpp:180: error: cannot convert `Database*' to `Record*' in assignment
C:SAI,MANItest_add(09.03.2013).cpp: In function `int getDate(date*)':
C:SAI,MANItest_add(09.03.2013).cpp:187: error: conversion from `date*' to non-scalar type `date' requested
Execution terminated

特别是这一行

x->next = (Record*)malloc(sizeof(struct Record));

我得到一个错误:不能转换'记录*'到'数据库*'在分配,但记录和数据库之间的区别是什么,因为我已经定义了它们。

我还没有写所有的模块,我只是想测试我的addRecord()和viewRecords(),但它不工作。如何纠正这些错误?

#include<iostream>
#include<conio.h>
#include<stdlib.h>
#include<malloc.h>
using namespace std;
// global declarations and function prototypes....
const int TRUE = 1,FALSE = 0,SUCCESS = 1;
const int SUBJECTS = 3;
typedef char String[25];   
// date structure , a better way to store dates.
struct date
{
       int day,month,year;
};
// Database structure , the main double linked list which stores all the information.
typedef struct DataBase
{
       String Name,FatherName,Address,Hometown;
       float Marks[SUBJECTS],Total,Percentage;
       date DOB;
       long int RegNo,PhoneNumber;
       struct Database *previous;        // the addresses of the next and previous nodes in the dll.
       struct Database *next;
}Record;

int main();
int menu();                           //   for displaying menu.
void process(int,Record*);            //   for processing the menu.
void addRecord(Record*);              //   for adding a record.
void delRecord(Record*);              //   for deleting a record.
void modRecord(Record*);              //   for modifying values of a record.
void sortRecords(Record*);            //   for sorting records.
void filterRecords(Record*);          //   for filtering records.
void searchRecords(Record*);          //   for searching a record.
void viewRecords(Record*);            //   for viewing records (all). 
int getDate(date*);                   //   for getting input for a date.
void copyDate(date,date*);            //   for copying two date variables.
int checkDate(date);                  //   for checking wether a given date is correct.
char *toString(int);                  //   for displaying month name given the month number.
void copyRecord(Record*,Record*);     //   for copying contents of one record into another.
// main function...
int main()
{
     Record *r;
     r = (Record*) malloc (sizeof(Record));
     r->next     = NULL;
     r->previous = NULL;
     while(1)
     {
                  process(menu(),r);
     }
}
// the menu function.
int menu()
{
     static int choice;
     cout<<"nttt Menu";
     cout<<"nttt 1.Add Records ";
     cout<<"nttt 2.Delete Records";
     cout<<"nttt 3.Modify Records";
     cout<<"nttt 4.Sort Records";
     cout<<"nttt 5.Filter Records";
     cout<<"nttt 6.Search Records";
     cout<<"nttt 7.View Records";
     cout<<"nttt 8.Exit";
     cout<<"nttt YOUR CHOICE : ";
     cin>>choice;
     if(choice>=1 && choice<=7) return choice;
     else if(choice == 8) exit(0);
     else
     {
         cout<<"n Sorry, that's an invalid choice.";
         cout<<"n Please Try Again.";
         menu();
     }
}
void process(int choice,Record *r)
{
     switch(choice)
     {
                   case 1:
                        addRecord(r);
                        break;
                   case 2:
                        delRecord(r);
                        break;
                   case 3:
                        modRecord(r);
                        break;
                   case 4:
                        sortRecords(r);
                        break;
                   case 5:
                        filterRecords(r);
                        break;
                   case 6:
                        searchRecords(r);
                        break;
                   case 7:
                        viewRecords(r);
                        break;
     }
}
void addRecord(Record *x)
{
     date *t;
     t = (date*) malloc ( sizeof(date) );
     fflush(stdin);
     Record *temp; temp = (Record*) malloc ( sizeof(Record) );
     cout<<"n Enter the following details ..... "<<endl;
     cout<<"n Name            : ";
     gets(temp->Name);
     cout<<"n Father's Name   : ";
     gets(temp->FatherName);
     cout<<"n Address         :";
     gets(temp->Address);
     cout<<"n Hometown        : ";
     gets(temp->Hometown);
     cout<<"n Register Number : ";
     cin>>temp->RegNo;
     temp->Total = 0;
     for(int i=0;i<SUBJECTS;i++)
     {
             cin>>temp->Marks[i];
             temp->Total += temp->Marks[i];
     }
     temp->Percentage = temp->Total/SUBJECTS;
     cout<<"n Total Marks     : "<<temp->Total;
     cout<<"nn Percentage      : "<<temp->Percentage;
                 if(getDate(t) == SUCCESS) // trick!
                 copyDate(temp->DOB,t);
     x->next = (Record*)malloc(sizeof(struct Record));
     copyRecord(x,temp);
     temp->previous = (Record*)malloc(struct Database);
     temp->previous = x;
     temp->next = NULL;
     return;
}
void viewRecords(Record *x)
{
     if(x->next == NULL && x->previous == NULL)
     {
                cout<<"n There are no records to view.";
                cout<<"n Please Add some records and then try again!";
                return;
     }
     do
     {
                   cout<<"n Name            : "<<x->Name;
                   cout<<"n Father's Name   : "<<x->FatherName;
                   cout<<"n Address         : "<<x->Address;
                   cout<<"n Hometown        : "<<x->Hometown;
                   cout<<"n Register Number : "<<x->RegNo;
                   for(int i=0;i<SUBJECTS;i++)
                   cout<<"n Mark "<<i+1<<"  : "<<x->Marks[i];
                   cout<<"n Total Marks      : "<<x->Total<<endl;
                   cout<<"n Percentage       : "<<x->Percentage;
                   cout<<"n Date Of Birth    : "<<x->DOB.day<<"th"<<toString(x->DOB.month)<<" "<<x->DOB.year;
                   if(x->next == NULL) break;
     }while((x=x->next)!=NULL);
}
int getDate(date *t)
{
     cout<<"nDate of birth (dd:mm:yyyy) : ";
     scanf("%d:%d:%d",&t->day,&t->month,&t->year);
     if(checkDate(t) == SUCCESS)
     return SUCCESS;
     else
     {
         cout<<"n Sorry, that's not a valid Date.";
         cout<<"n Please Try Again,"<<endl;
         getDate(t);
     }
}
void copyDate(date d1,date *d2)
{
     d1.day   = d2->day;
     d1.month = d2->month;
     d1.year  = d2->year;
     return; 
}
int checkDate(date *x)
{
     int leap = (x->year%4==0)?TRUE:FALSE;
     if( ( x->day<=0 || x->day > 31  ) || (x->month>12 || x->month<=0) || (x->year<1900 || x->year > 2008) )
     return FALSE;
     else if(leap == TRUE && x->month == 2 && (x->day>29))
     return FALSE;
     else if(leap == FALSE && x->month == 2 && (x->day>28))
     return FALSE;
     else if( (x->month == 4 || x->month == 6 || x->month == 9 || x->month == 11) && x->month >= 31 )
     return FALSE;
     else
     return TRUE;
}
char *toString(int m)
{
     char *t = (char*) malloc (sizeof(char)*4);
     switch(m)
     {
              case 1 : t = "Jan"; break;
              case 2 : t = "Feb"; break;
              case 3 : t = "Mar"; break;
              case 4 : t = "Apr"; break;
              case 5 : t = "May"; break;
              case 6 : t = "Jun"; break;
              case 7 : t = "Jul"; break;
              case 8 : t = "Aug"; break;
              case 9 : t = "Sep"; break;
             case 10 : t = "Oct"; break;
             case 11 : t = "Nov"; break;
             case 12 : t = "Dec"; break;
     }
     return t;
}

我认为问题的根源是Recordstruct Database的类型定义名称,第一个错误(使用struct关键字与Record)导致后来的错误。

由于这是c++,因此完全转储malloc并使用new操作符:

x->next = new Record;

你不需要使用struct关键字来定义typedef..

x->next = (Record*)malloc(sizeof(struct Record));
应该

x->next = (Record*)malloc(sizeof(Record));

注意:

你最好使用new而不是malloc

你应该决定是写C还是c++,因为它们是不同的语言。

你的主要问题的答案,"记录和数据库之间的区别是什么",是

typedef struct Database
{
   // ...
} Record;

为结构体引入了几个名称。

在C语言中有两个:struct DatabaseRecord
在c++中,例如您的代码,有三个:与C中相同的两个,加上Database

在这两种语言中都没有称为struct Record的类型,这就是为什么你会得到第一个错误:"using typedef-name 'Record' after 'struct'"。
你应该先修复第一个错误。

(我不确定这是否会解决你的问题,因为你的g++看起来有点过时-如果它真的是3.4.2版本,它几乎有10年的历史,你应该考虑升级)