Click here to Skip to main content
15,910,872 members

Comments by qinritukou (Top 5 by date)

qinritukou 6-Jan-13 0:51am View    
Thanks for your answer, I wonder to know if you know any good books about the database design and the performance of different designs. Thanks ahead.
qinritukou 9-Dec-12 23:31pm View    
Thank you for your answer. Do you know websites listing share and security data about different distrobutions of linux?
qinritukou 9-Dec-12 23:30pm View    
Thank you for your answer. I just wander know which distrobution to select.
Of course that which is the best is now in consideration.
If there's data for their performance in security and so on?
qinritukou 21-May-12 20:49pm View    
Hi, guys.Thank you very much for your help.
qinritukou 25-Apr-12 1:04am View    
I just want to know how to compile the code just like below shows.
And I found it works. Maybe I did the wrong coding. Thank you for your comment.
#include <iostream>

using namespace std;

template <typename t="">
class Number
{
public:
T num;
template <typename e="">
void assignNumber(E src);
};

template <typename t="">
template <typename e="">
void Number<t>::assignNumber(E src)
{
num = src;
}

int main()
{
Number<long> n;
int i = 1;
n.assignNumber<int>(i);
cout << n.num;
return (0);
}