473,770 Members | 2,096 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Templated member function help

3 New Member
I'm having some problems with a templated member function of a templated class. Unfortunately I can't replicate it with a simple example so I know something odd must be going on!!!

Basically it's like this...

I have a few classes all templated by one type. Inside one of the classes is a templated member function. When I try to use this templated function in another class, the compiler complains with:

error: expected primary-expression before 'int'
error: expected ',' or ';' before 'int'

The odd thing is that if I remove the <int> from the call to the function it compiles fine. Currently this part of the code isn't actually used as I never create an instance of the class, it's just there in my code for later. So I am thinking this might be something to do with it.

It's confusing I know and I'll try to get a simple example working.

I think basically the compiler isn't noticing that the function I am calling is a template and so it's wondering why I am putting in the <int>. How can I force it to know it's going to be a template?
Mar 15 '07 #1
2 1689
mattjgalloway
3 New Member
Ok here's an example:

Expand|Select|Wrap|Line Numbers
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template <typename T>
  5. class One {
  6.     public:
  7.         One() {;}
  8.         ~One() {;}
  9.  
  10.         template <typename TT>
  11.         TT doSomething(TT var1);
  12.     private:
  13. };
  14.  
  15. template <typename T>
  16. template <typename TT>
  17. TT One<T>::doSomething(TT var1) {
  18.     return var1;
  19. }
  20.  
  21. template <typename T>
  22. class Two {
  23.     public:
  24.         Two(One<T> *a);
  25.         ~Two() {;}
  26.     private:
  27.         One<T> *_one;
  28. };
  29.  
  30. template <typename T>
  31. Two<T>::Two(One<T> *a) {
  32.     _one = a;
  33.     int ret = _one->doSomething<int>(5);
  34. }
  35.  
  36. int main() {
  37.     return 0;
  38. }
The output from the compiler is:
Expand|Select|Wrap|Line Numbers
  1. memfunc.cpp: In constructor 'Two<T>::Two(One<T>*)':
  2. memfunc.cpp:33: error: expected primary-expression before 'int'
  3. memfunc.cpp:33: error: expected ',' or ';' before 'int'
It's annoying... basically inside the compiler for Two, it's not noticing that doSomething is a template and so it complains about the <int> part of that line...

What am I doing wrong?
Mar 15 '07 #2
mattjgalloway
3 New Member
Ok, WHAT! If I remove the <int> it works, compiles fine. And then if I change it slightly to actually use the template (I made the doSomething function save to a public int inside class Two and then cout'ed that value to check it saved it).

It seemed to work out the <int> itself. This is really wierd because it shouldn't do that, should it!?

Like for instance if I did:

Expand|Select|Wrap|Line Numbers
  1. template <typename T>
  2. T doSomething(T var1) {
  3.    return var1;
  4. }
(i.e. a templated function, not member function)
Then it'd be WRONG to do:
Expand|Select|Wrap|Line Numbers
  1. int ret = doSomething(5)
I would have to do:
Expand|Select|Wrap|Line Numbers
  1. int ret = doSomething<int>(5)
I am mega confused...
Mar 15 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

1
1869
by: Rich | last post by:
Hi, I have a query regarding VC6 and its handling of templated copy constructors. Here goes: Take a look at the following code sample... template<class _Ty, size_t t_uiSize = 10 > class my_template
3
1618
by: William Payne | last post by:
Consider this (templated) class member function: template<typename Type> void CircularContainer<Type>::insert(const Type& s) { vector<Type>::iterator itr = find(m_elements.begin(), m_elements.end(), s); // snip }
9
2318
by: Jon Wilson | last post by:
I have a class which needs to accumulate data. The way we get this data is by calling a member function which returns float on a number of different objects of different type (they are all the same type for a given instance of the class, but different types for different instances.) #include<set> using namespace std; template<class T>
4
1868
by: Lionel B | last post by:
Greetings, The following code: <code> template<typename T> class A { protected:
1
1255
by: Trevor Morgan | last post by:
I've been having problems when a templated member function has the same name as ANY previously defined template parameter. Here's the simplest case that demonstrates the problem. This fails to compile under VC++ version 7.0 It has no problems under gcc.
6
1526
by: Dan Huantes | last post by:
I was presented a problem today where a class had member variable that was an object of a templated class. The class wanted to instantiate the object as a private member variable and call a constructor other than the default constructor. I couldn't figure out why it wasn't working so I changed the member variable to a pointer to an object instead and intialized it in the constructor and destroyed in the destructor. It bothered me that...
11
1933
by: Matthias | last post by:
Hello, templated virtual member functions are not allowed. Now I am searching for a good workaround for this problem, but I can't find any. Here's my problem: class Base { template <typename T> virtual void setParam(std::string s, const T& value);
15
1811
by: kwikius | last post by:
Hi all, I have been searching through the list of papers at: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/ I seem to remember a proposal regarding templated namespaces e.g: template <typename T> namespace X{
2
1832
by: Amadeus W. M. | last post by:
I have a bunch of templated functions: template <class Type_t> double f2(Type_t x) { return 2*x; } template <class Type_t> double f3(Type_t x) { return 3*x; }
0
9618
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10260
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10101
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7456
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6712
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2850
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.