Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6079839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:59:32+00:00 2026-05-23T10:59:32+00:00

Have a simple program, where I can insert a string into a statically defined

  • 0

Have a simple program, where I can insert a string into a statically defined array of strings of size 20.

This program worked just fine, until I was assigned to change it to use templates, so the code (with modificaiton) would support intergers or strings.

Using the Class “Shelf” in the included header, I can no longer declare the following object int main(), “Shelf book;” –as the compiler tells me book has not been declared and I’m missing Template Arguments.

#include<iostream>
#include<string>

#define shelfSize 20
template<class T>
class Shelf{
   public:
       Shelf();//default constructor
       void insert(T&);
   private:
       string bookshelf[shelfSize];
       int counter;
};
template< class T>
Shelf<T>::Shelf(){
    for(int i=0; i <shelfSize; i++)
        bookshelf[i]="";
    counter=0;
}
template< class T>
void Shelf<T>::insert(T &booknum){
    bookshelf[counter] = booknum;
    counter++;
}
int main(){
   Shelf book;
   string isbn="";
   cout<<"Enter ISBN Number you wish to enter into the Array: "<<endl;
   getline(cin, isbn);
   book.insert(isbn);
   return 0;
 }

Obviously, I watered down my program greatly and want to focus on what’s actually giving me an issue.

So as I said I get the following errors:

Missing Template arguements before “book”;
expect “;” before “book”.
“book” undeclared.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:59:32+00:00Added an answer on May 23, 2026 at 10:59 am

    You need to specify a parameter to T. Templates need to be instantiated with the datatype passed as a parameter, like so:

    Shelf<std::string> book;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm stuck! I have this very simple test code and I can't get it
I have a simple program, which needs to make sure I can connect to
I have been trying to get my C# program to insert records directly into
I have a simple C++ program that I can compile (g++ from command line)
As you can see, I am trying to insert variables into strings. In my
Say I have simple program that emulates a board game with a number of
I have a simple program that creates a thread, loops twenty times and then
I have a simple program to check if a port is open, but I
I have a simple python program that I'd like to daemonize. Since the point
I have a simple forms program that I have been fighting with for a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.