Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ constructor member initializer lists

class Book {
private:
  const std::string title;
  const int pages;
public:
  Book() {
    title = "Diary";    // Error: const variables can't be assigned to
    pages = 100;    // Error: const variables can't be assigned to
  };
Source by www.codecademy.com #
 
PREVIOUS NEXT
Tagged: #constructor #member #initializer #lists
ADD COMMENT
Topic
Name
7+9 =