Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I am writing a small program in C++. There is a class. Can you use cout in the class to output data. Such as cout << "Good times"; Don't you need then to overload << operator? I am trying to do that but it does not work only some errors. How to output data via cout having it in the class.CPP file:
#include "University.hpp" #include "Course.hpp" //#include "Lecture.hpp" #include #include #include using namespace std; University::University() { } University::University(int capacity, string uni) { university = uni; cap = capacity; length = 0; myCourse = new Course[cap]; } University::University(University& orig) { copy(orig); } University::~University() { delete [] myCourse; } University & University:: operator=(University & other){ if(this != &other){ delete [] myCourse; copy(other); } return *this; } void University:: copy(University & other){ if(this != &other){ length = other.length; cap = other.cap; myCourse = new Course[cap]; for(int x = 0; x < length; x++){ myCourse[x] = other.myCourse[x]; } } } void University:: addCourse(Course syllabus){ if(length == cap){ cap *= 2; Course * temp = new Course[cap]; for(int x = 0; x < length; x++){ temp[x] = myCourse[x]; } myCourse = temp; } myCourse[length] = syllabus; length++; REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
You're trying to call ostringstream::operator<< with the argument being a Course. You need to define operator<< for Course as well. Sorry I missed this before. You should also remove the friend from the definition of operator<<(ostream&, const University&) though since it's only needed inside the class definition.
ostringstream::operator<<
Course
operator<<
friend
operator<<(ostream&, const University&)
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.