嗯,我一直在努力這一段時間,但我似乎無法弄清楚。你如何在課堂上使用字符串?
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include "student.h"
using namespace std;
int numofstudents = 5;
Student ** StudentList = new Student*[numofstudents];
string tempLname = "smith";
StudentList[0]->SetLname(tempLname);
#include<iostream>
#include <string>
using namespace std;
class Student {
public:
void SetLname(string lname);
void returnstuff();
protected:
string Lname;
};
#include <iostream>
#include "student.h"
#include <iomanip>
#include <cctype>
#include <cstring>
#include <string>
using namespace std;
void Student::SetLname(string lname) {
Lname = lname;
}
所有我想要做的是設置Lname
到smith
但是當我運行我的程序崩潰,沒有它運行後告訴我的錯誤。 任何幫助將不勝感激!
謝謝你們我希望我早點問過這個問題:p – user3091585