473,396 Members | 1,725 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

unexpected template behavior

I have a template class that works fine when I implement it with <int>,
but when I use <floator <doubleit doesn't work. The class has a
dynamic array of type T that gets instantiated in my constructor. When
type T is int, the array works like I expect. But when I use double or
float, the array points to garbage and any updates to array elements
make no difference.

I'm using Visual Studio 2005 on an XP pro machine. The following is
the code that is giving me problems. If anyone can help explain what
I'm doing wrong and why this doesn't work, I'd really appreciate it.
Thanks in advance.
template <class T>
class Tuple
{
public:
Tuple<T>(void);
Tuple<T>(T x, T y);
~Tuple<T>(void);

T getX();
T getY();

void setX(T x);
void setY(T y);
private:
T *_values; //arrray of values
};

template <class T>
Tuple<T>::Tuple(void)
{
_values = new T[2];
_values[0] = 0;
_values[1] = 0;
}

template <class T>
Tuple<T>::Tuple(T x, T y)
{
_values = new T[2];
_values[0] = x;
_values[1] = y;
}

template <class T>
Tuple<T>::~Tuple(void)
{
}

template <class T>
T Tuple<T>::getX() { return _values[0]; }

template <class T>
T Tuple<T>::getY() { return _values[1]; }

template <class T>
void Tuple<T>::setX(T x) { _values[0] = x; }

template <class T>
void Tuple<T>::setY(T y) { _values[1] = y; }

Jan 4 '07 #1
11 1600

ho********************@gmail.com wrote:
I have a template class that works fine when I implement it with <int>,
but when I use <floator <doubleit doesn't work. The class has a
dynamic array of type T that gets instantiated in my constructor. When
type T is int, the array works like I expect. But when I use double or
float, the array points to garbage and any updates to array elements
make no difference.

I'm using Visual Studio 2005 on an XP pro machine. The following is
the code that is giving me problems. If anyone can help explain what
I'm doing wrong and why this doesn't work, I'd really appreciate it.
Thanks in advance.
template <class T>
class Tuple
{
public:
Tuple<T>(void);
Tuple<T>(T x, T y);
~Tuple<T>(void);

T getX();
T getY();

void setX(T x);
void setY(T y);
private:
T *_values; //arrray of values
};

template <class T>
Tuple<T>::Tuple(void)
{
_values = new T[2];
_values[0] = 0;
_values[1] = 0;
}

template <class T>
Tuple<T>::Tuple(T x, T y)
{
_values = new T[2];
_values[0] = x;
_values[1] = y;
}

template <class T>
Tuple<T>::~Tuple(void)
{
}

template <class T>
T Tuple<T>::getX() { return _values[0]; }

template <class T>
T Tuple<T>::getY() { return _values[1]; }

template <class T>
void Tuple<T>::setX(T x) { _values[0] = x; }

template <class T>
void Tuple<T>::setY(T y) { _values[1] = y; }
Hmm.. I used VC++ 2005 Express edition on an XP machine and this code
seemed to work fine for me.

Jan 4 '07 #2
ho********************@gmail.com wrote:
I have a template class that works fine when I implement it with <int>,
but when I use <floator <doubleit doesn't work. The class has a
dynamic array of type T that gets instantiated in my constructor. When
type T is int, the array works like I expect. But when I use double or
float, the array points to garbage and any updates to array elements
make no difference.

I'm using Visual Studio 2005 on an XP pro machine. The following is
the code that is giving me problems. If anyone can help explain what
I'm doing wrong and why this doesn't work, I'd really appreciate it.
Thanks in advance.
template <class T>
class Tuple
{
public:
Tuple<T>(void);
Tuple<T>(T x, T y);
~Tuple<T>(void);

T getX();
T getY();

void setX(T x);
void setY(T y);
private:
T *_values; //arrray of values
};

template <class T>
Tuple<T>::Tuple(void)
{
_values = new T[2];
_values[0] = 0;
_values[1] = 0;
}

template <class T>
Tuple<T>::Tuple(T x, T y)
{
_values = new T[2];
_values[0] = x;
_values[1] = y;
}

template <class T>
Tuple<T>::~Tuple(void)
{
}

template <class T>
T Tuple<T>::getX() { return _values[0]; }

template <class T>
T Tuple<T>::getY() { return _values[1]; }

template <class T>
void Tuple<T>::setX(T x) { _values[0] = x; }

template <class T>
void Tuple<T>::setY(T y) { _values[1] = y; }
I am willing to bet that your test code has undefined behavior. Your
template class has serious issues:

a) The compiler provided copy constructor and assignment operator will copy
pointers instead of the tuples pointed to. Thus your class has reference
semantics instead of value semantics.

b) The memory new[]ed in the constructor is never delete[]d.

Both pitfalls will very likely cause bugs that manifest themselves in UB.
Thus, all bets are off.
Best

Kai-Uwe Bux
Jan 4 '07 #3

Kai-Uwe Bux wrote:
I am willing to bet that your test code has undefined behavior. Your
template class has serious issues:

a) The compiler provided copy constructor and assignment operator will copy
pointers instead of the tuples pointed to. Thus your class has reference
semantics instead of value semantics.
He is using a dynamic array... so if he used the copy constructor, he
would copy the reference to that array... so basically he would re-use
the existing array. This may be an unintentional bug (or exactly what
he wants, I don't know his semantics), but it would not cause a
difference between an array of ints, floats and doubles.

However, use of the copy constructor may indeed provide unextpected
behavior. If the testcode for ints and floats/doubles were somehow
different and the copy constructor was used in the testcode, this could
be a problem area
>
b) The memory new[]ed in the constructor is never delete[]d.
You would leak the memory if the Tuple is deleted, which may
eventually result in UB, but still doesn't explain a difference between
floats/doubles and ints.

Jan 4 '07 #4
bjeremy wrote:
>
Kai-Uwe Bux wrote:
>I am willing to bet that your test code has undefined behavior. Your
template class has serious issues:

a) The compiler provided copy constructor and assignment operator will
copy pointers instead of the tuples pointed to. Thus your class has
reference semantics instead of value semantics.

He is using a dynamic array... so if he used the copy constructor, he
would copy the reference to that array... so basically he would re-use
the existing array. This may be an unintentional bug (or exactly what
he wants, I don't know his semantics), but it would not cause a
difference between an array of ints, floats and doubles.

However, use of the copy constructor may indeed provide unextpected
behavior. If the testcode for ints and floats/doubles were somehow
different and the copy constructor was used in the testcode, this could
be a problem area
>>
b) The memory new[]ed in the constructor is never delete[]d.
You would leak the memory if the Tuple is deleted, which may
eventually result in UB, but still doesn't explain a difference between
floats/doubles and ints.
Since there is nothing in the code posted that would explain a difference
between int and float/double, I conjectured that the test code invokes UB.
Thus, I pointed out the "features" in the posted snippet that may cause
test code to be undefined.
Best

Kai-Uwe Bux
Jan 4 '07 #5

ho********************@gmail.com wrote:

If you are not learn design of classes, but learn C++ class's
implementation, then
replace:
T getX();
T getY();
to

T getX()const;
T getY()const;

and
void setX(T x);
void setY(T y);
to
void setX(const T& x);
void setY(const T& y);

and
template <class T>
Tuple<T>::Tuple(void)
{
_values = new T[2];
_values[0] = 0;
_values[1] = 0;
}
to

/*Tuple<T>::*/ enum { item_x=0, item_y, total_items };

template <class T>
Tuple<T>::Tuple():_values(0)
{
//new must not return NULL
_values = new T[total_items];
_values[item_x] = 0;
_values[item_y] = 0;
}

and
template <class T>
Tuple<T>::Tuple(T x, T y)
{
_values = new T[2];
_values[0] = x;
_values[1] = y;
}
to

template <class T>
Tuple<T>::Tuple(const T& x, const T& y):_values(0)
{
//new must not return NULL
_values = new T[total_items];
_values[item_x] = x;
_values[item_y] = y;
}

and
template <class T>
Tuple<T>::~Tuple(void)
{
}
to

template <class T>
Tuple<T>::~Tuple(){ delete _values; _values=0; }

and
template <class T>
T Tuple<T>::get?() { return _values[?]; }
to

template <class T>
T Tuple<T>::get?()const { return _values[item_?]; }

and
template <class T>
void Tuple<T>::set?(T ?) { _values[?] = ?; }
to

template <class T>
void Tuple<T>::set?(const T& ?) { _values[item_?] = ?; }

And create at least

template <class T>
class Tuple
{
....
private:
Tuple(const Tuple& ):_values(0){abort();}
void Tuple<T>::operator = (const Tuple& ){abort();}
};

And if you are using exceptions, define throw(type) for all class's
members.
But when I use double or
float, the array points to garbage and any updates to array elements
make no difference.
Do printing of data for set/get members.

Jan 4 '07 #6

ho********************@gmail.com wrote:

If you are not learn design of classes, but learn C++ class's
implementation, then
replace:
T getX();
T getY();
to

T getX()const;
T getY()const;

and
void setX(T x);
void setY(T y);
to
void setX(const T& x);
void setY(const T& y);

and
template <class T>
Tuple<T>::Tuple(void)
{
_values = new T[2];
_values[0] = 0;
_values[1] = 0;
}
to

/*Tuple<T>::*/ enum { item_x=0, item_y, total_items };

template <class T>
Tuple<T>::Tuple():_values(0)
{
//new must not return NULL
_values = new T[total_items];
_values[item_x] = 0;
_values[item_y] = 0;
}

and
template <class T>
Tuple<T>::Tuple(T x, T y)
{
_values = new T[2];
_values[0] = x;
_values[1] = y;
}
to

template <class T>
Tuple<T>::Tuple(const T& x, const T& y):_values(0)
{
//new must not return NULL
_values = new T[total_items];
_values[item_x] = x;
_values[item_y] = y;
}

and
template <class T>
Tuple<T>::~Tuple(void)
{
}
to

template <class T>
Tuple<T>::~Tuple(){ delete _values; _values=0; }

and
template <class T>
T Tuple<T>::get?() { return _values[?]; }
to

template <class T>
T Tuple<T>::get?()const { return _values[item_?]; }

and
template <class T>
void Tuple<T>::set?(T ?) { _values[?] = ?; }
to

template <class T>
void Tuple<T>::set?(const T& ?) { _values[item_?] = ?; }

And create at least

template <class T>
class Tuple
{
....
private:
Tuple(const Tuple& ):_values(0){abort();}
void Tuple<T>::operator = (const Tuple& ){abort();}
};

And if you are using exceptions, define throw(type) for all class's
members.
But when I use double or
float, the array points to garbage and any updates to array elements
make no difference.
Do printing of data for set/get members.

Jan 4 '07 #7
On 2007-01-04 03:31, ho********************@gmail.com wrote:
I have a template class that works fine when I implement it with <int>,
but when I use <floator <doubleit doesn't work. The class has a
dynamic array of type T that gets instantiated in my constructor. When
type T is int, the array works like I expect. But when I use double or
float, the array points to garbage and any updates to array elements
make no difference.

I'm using Visual Studio 2005 on an XP pro machine. The following is
the code that is giving me problems. If anyone can help explain what
I'm doing wrong and why this doesn't work, I'd really appreciate it.
Thanks in advance.
template <class T>
class Tuple
{
public:
Tuple<T>(void);
Tuple<T>(T x, T y);
~Tuple<T>(void);

T getX();
T getY();

void setX(T x);
void setY(T y);
private:
T *_values; //arrray of values
};
Unless you really want the functionality that bjeremy pointed out (when
copying Tuples) I can't see any good reason to use a dynamic array to
store the elements. Alternatives are to use an array which is a member
(non-dynamic) or even better pure members:

T _values[2];

or

T first;
T second;

Either way you don't have to worry about memory leaks.

As for the changes of behavior; use the debugger. VS2005 has excellent
debugging facilities.

--
Erik Wikström
Jan 4 '07 #8
Thanks for the help everyone. Unfortunately, nothing I change seems to
be helping, so perhaps my issue is related to the code I'm using to
debug the class. I tried running the following code on my original
code, then adding the copy constructor and "delete []_values;" to the
deconstructor, and then implenting all the changes that Grizlyk
suggested, and I got the same results each time. I've also tried this
on multiple machines running XP pro and also tried it with Visual
Studio 2005 and Visual Studio C++ Express Edition - no luck. Clearly
I'm doing something wrong. Any thoughts?

#include "Tuple.h"
#include <stdio.h>

int main()
{
Tuple<inttup1(1, 2);
printf("tup1: %i, %i\n", tup1.getX(), tup1.getY()); //prints as
expected "tup1: 1, 2"

Tuple<floattup2(2.2f, 2.5f);
printf("tup2: %d, %d\n", tup2.getX(), tup2.getY()); //prints garbage

getchar(); //stop the console window from closing
return 0;
}
Just to clarify, all of my class code is in the Tuple.h file, it is not
split between .h and .cpp.

Again, thanks in advance to any responses.

Jan 4 '07 #9

ho********************@gmail.com wrote:
Tuple<floattup2(2.2f, 2.5f);
printf("tup2: %d, %d\n", tup2.getX(), tup2.getY()); //prints garbage
Because %d is not the formatting character for floating point numbers.

#include <iostream>
#include <cstdio>
int main(void)
{
double x = 5.5;
printf("%d", x);
std::cin.get();
}

I get 0 but it's totally unpredictable what will happen on any given
computer.

Jan 4 '07 #10

Noah Roberts wrote:
ho********************@gmail.com wrote:
Tuple<floattup2(2.2f, 2.5f);
printf("tup2: %d, %d\n", tup2.getX(), tup2.getY()); //prints garbage

Because %d is not the formatting character for floating point numbers.

#include <iostream>
#include <cstdio>
int main(void)
{
double x = 5.5;
printf("%d", x);
std::cin.get();
}

I get 0 but it's totally unpredictable what will happen on any given
computer.
Well... Kai was right, it looks like its your test code... When I was
testing your code I was using std::cout to print out the array
values... you may want to use std::cout instead of printf, and this is
atually a good example of why...

Jan 4 '07 #11
Changing from printf to std::cout solved everything. Sheesh!

Thanks for the help everyone.

Jan 4 '07 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: will | last post by:
All I am trying to pass a simple xml file using xmlspy : <?xml version="1.0" standalone="no"?> <inventory> <vehicle> <make>Chevy</make>
4
by: Generic Usenet Account | last post by:
I am seeing some unexpected behavior while using the STL "includes" algorithm. I am not sure if this is a bug with the template header files in our STL distribution, or if this is how it should...
9
by: Jeff Louie | last post by:
In C# (and C++/cli) the destructor will be called even if an exception is thrown in the constructor. IMHO, this is unexpected behavior that can lead to an invalid system state. So beware! ...
62
by: ashu | last post by:
hi look at this code include <stdio.h> int main(void) { int i,j=2; i=j++ * ++j * j++; printf("%d %d",i,j); return 0;
2
by: Dimitri Furman | last post by:
SQL Server 2000 SP4. Running the script below prints 'Unexpected': ----------------------------- DECLARE @String AS varchar(1) SELECT @String = 'z' IF @String LIKE ''
9
by: stephen.diverdi | last post by:
Can anyone lend a hand on getting this particular template specialization working? I've been trying to compile with g++ 4.1 and VS 2005. ...
6
by: Kai-Uwe Bux | last post by:
Juha Nieminen wrote: I think your code violates the One-Definition-Rule. The template function foo() is defined in two significantly different ways in the two files. As far as I know, no...
3
by: Unknownmat | last post by:
Here is the smallest code I could come up with to reproduce the I was able to reproduce the warning with an even smaller snippet of code: #include <vector> #include <functional> #include...
11
by: JRough | last post by:
I'm trying to use output buffering to cheat so i can print to excel which is called later than this header(). header("Content-type: application/xmsdownload"); header("Content-Disposition:...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.