3

我目前正在学习“结构化编程方法”课程。该课程不是基于语言的,但我们通常使用 C 或 C++。有时我需要用其中一种语言编写,有时我必须最初用 C 编写并将代码转换为 C++,有时我可以用我喜欢的语言编写。很可能很奇怪,我更喜欢使用 C 的 (f/p)rintf。所以,这是我的问题:

这是我的头文件struct

 #include <string>
 using namespace std;

 typedef string FNAME;
 typedef string LNAME;
 typedef string FULLNAME;
 typedef struct EmpRecord
 {
    FNAME firstname;
    LNAME lastname;
    FULLNAME fullname;
    float  hours, rate, deferred, gross, netpay,
           fedtax,  statetax,  ssitax;
  } EmpRecord;

这是“主要”.cpp:

        #define STRADD ", "
        #include <stdio.h>
        #include <iostream>
        #include <fstream>
        #include <iomanip>
        #include <string>
        #include "Struct.h"
        #include "Rates.h"
        #include "calcTaxesPlus.cpp"
        using namespace std;

        /*......*/
        void printEmpData(FILE *fp, struct EmpRecord *, float reghrs, float othrs);//3.8
        /*......*/
        int main()
        {
            float totRegHrs, totOtHrs, totRates, totGross, totDeferd,
                  totFed, totState, totSSI, totNet;
            float reghrs, othrs;
            float avgRate, avgRegHrs, avgGross, avgFed, avgSSI, avgNet,
                  avgOtHrs, avgState, avgDeferd;
            int   numEmp;

            EmpRecord emp;
            EmpRecord *Eptr;
            Eptr = &emp;

            FILE * fp;
            fp = fopen("3AReport.txt", "w");
            if (fopen == NULL)
            {
                printf("Couldn't open output file...!");
                fflush(stdin);
                getchar();
                exit(-1000);
            }
            /*....*/
            printEmpData(fp, Eptr, reghrs, othrs);//3.8
            return 0;
        }
        /*....*/
        void printEmpData(FILE *fp, struct EmpRecord *e, float reghrs, float othrs) 
        {
            fprintf(fp, "\n%-17.16s   %5.2f       %5.2f     %7.2f     %6.2f     %6.2f %7.2f", e->fullname, e->rate, reghrs, e->gross, e->fedtax, e->ssitax, e->netpay);
            fprintf(fp, "\n                                %5.2f                 %6.2f     %6.2f       \n", othrs, e->statetax, e->deferred);
        return;
    }

我尝试了其他问题/答案建议的大量组合,但似乎没有一个是在处理跨语言情况。

我基本上是在寻找一种解决方案,允许我继续使用 fprintf,同时保留大部分代码 C++。

我不是在找人为我编写解决方案,而是解释这个问题是什么以及如何从逻辑上绕过它们。

此外, typedef 是一项要求。谢谢-

4

1 回答 1

3

std::string有一种c_str() const方法可用于“准备”std::string用于格式化的%s

fprintf(fp, "%s", e->fullname.c_str());

当 printf 风格的函数%s在格式字符串中看到时,它正在寻找以 NUL 结尾的 C 字符串(类型:)const char *。该std::string::c_str() const方法只返回std::string对象的那个。

于 2012-07-15T10:55:06.477 回答