Questions tagged [class-template]

Anything related to C++ class templates, i.e. classes whose definition depends on some parameter according to templates definition rules.

Anything related to C++ class templates, i.e. classes whose definition depends on some parameter according to templates definition rules.

See:

243 questions
-2
votes
2 answers

How to delete an item in an array while using a Class Template?

I'm trying to delete "GoodBye" from the Remove function and then print a list with it missing. I'm getting an error saying: Error 1 error C2440: 'delete' : cannot convert from 'std::string' to 'void* #include #include…
Terry Light
  • 109
  • 1
  • 7
-2
votes
2 answers

Template class and int main() in C++

I'm trying to rewrite an "ordinary" class to a template class. I ran into a problem - function int main (). I am not sure if the problems is exactly here, but the compiler reports "missing template arguments before 'b'". I couldn't find some example…
Anakin
  • 81
  • 1
  • 3
  • 7
-2
votes
3 answers

Correct syntax of making a "class template" friend to a class

I just need: Correct syntax of making a "class template" friend to a class
MTVS
  • 2,046
  • 5
  • 26
  • 37
1 2 3
16
17