您好,登錄后才能下訂單哦!
這篇文章主要講解了“GradeBook類怎么定義”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“GradeBook類怎么定義”吧!
這里,GradeBook類表示可供教師管理學生考試成績的成績簿,而在main函數創建了一個GradeBook對象.main函數使用這個對象和它的成員函數,在屏幕上顯示一條歡迎教師進入成績簿程序的信息.
PS:關鍵字class后跟類名GradeBook.按照慣例,用戶定義的類名字以大寫字母開頭,而且為了增強可讀性,類名中每個隨后的單詞其首字母也為大寫.同時,每個類的體包圍在一對花括號中({和}).類的定義以分號結束.
// Define class GradeBook with a member function displayMessage; // Create a GradeBook object and call its displayMessage function. #include <iostream> using std::cout; using std::endl; // GradeBook class definition class GradeBook { public: // function that displays a welcome message to the GradeBook user void displayMessage() { cout << "Welcome to the Grade Book!" << endl; } // end function displayMessage }; // end class GradeBook // function main begins program execution int main() { GradeBook myGradeBook; // create a GradeBook object named myGradeBook myGradeBook.displayMessage(); // call object's displayMessage function return 0; // indicate successful termination } // end main
測試結果
在這里,我們重新定義了GradeBook類,它的displayMessage成員函數將課程名稱作為歡迎消息的一部分,這個新的成員函數displayMessage規定了一個表示要輸出的課程名稱的形參.
// Define class GradeBook with a member function that takes a parameter; // Create a GradeBook object and call its displayMessage function. #include <iostream> using std::cout; using std::cin; using std::endl; #include <string> // program uses C++ standard string class using std::string; using std::getline; // GradeBook class definition class GradeBook { public: // function that displays a welcome message to the GradeBook user void displayMessage( string courseName ) { cout << "Welcome to the grade book for\n" << courseName << "!" << endl; } // end function displayMessage }; // end class GradeBook // function main begins program execution int main() { string nameOfCourse; // string of characters to store the course name GradeBook myGradeBook; // create a GradeBook object named myGradeBook // prompt for and input course name cout << "Please enter the course name:" << endl; getline( cin, nameOfCourse ); // read a course name with blanks cout << endl; // output a blank line // call myGradeBook's displayMessage function // and pass nameOfCourse as an argument myGradeBook.displayMessage( nameOfCourse ); return 0; // indicate successful termination } // end main
感謝各位的閱讀,以上就是“GradeBook類怎么定義”的內容了,經過本文的學習后,相信大家對GradeBook類怎么定義這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。