Tagged Questions
2
votes
0answers
67 views
Must type template every time for generic functions?
In C++, is there any way to avoid having to type the template name every time I am writing a class function outside of its class definition?
For example, if I want to define a class function, do I ...
0
votes
1answer
41 views
Non Template overloaded function not invoked [closed]
I have the following program.
template <typename T>
const T & mymin( T const &x, T const &y)
{
cout <<"Inside template Version "<<endl;
}
const int & min (int ...
1
vote
2answers
75 views
Parameterized typedef possible?
I was wondering if it is possible to have some kind of parameterized typedef.
To illustrate, in my code I use this typedef:
typedef std::queue<std::vector<unsigned char>, ...
1
vote
1answer
81 views
Template function to return different types
Is it possible to have a method return values of different types with the type determined at run time?
I am writing something that will encode and decode using different ciphers. Each cipher has a ...
2
votes
1answer
42 views
How templates works when consumed by another module
When creating, for instance, a generic linked list (denote it by List<T>), I was always told that if I use somewhere a List<int> and elsewhere a List<short> then actually the ...
1
vote
4answers
157 views
Recommended C++ template code examples or open source projects [closed]
I have been working with a code base that makes heavy use of C++ templates for some time now and I'm getting quite familiar with it. Recently I've been thinking it would be a good idea to take a look ...
1
vote
2answers
68 views
Using the return type of a functor to declare return type of a template method, without decltype
I would like to avoid the need to specify the return type when calling a template member function. The 'decltype' keyword combined with 'auto' can accomplish this, but unfortunately we do not have a ...
0
votes
1answer
43 views
Function returns a Function
How am I returning another function? The compiler error I get (on Visual Studio) is "function returns function"
template <>
class encoder<uint16_t, endian_swap> {
public:
uint16_t ...
0
votes
2answers
50 views
C++ class (with set) storing a generic template class…compilation problems
So I'm still some what new to C++ programming and very new at templates. I am trying to make a basic template class (a node if you will) that holds some generic data and a double. I then want to make ...
-1
votes
2answers
63 views
C# Generic inheritance from ArrayList
I want to create my own class that inherit from ArrayList. (I want to add some functionality that I need to the ArrayList)
I want my MyArrayList to still be geneirc, means - MyArrayList.
How can I ...
3
votes
1answer
89 views
Type indexed tuple
How can you implement a tuple class that accesses elements by type rather than by index? Something along the lines of this interface...
template<typename... T>
class Tuple
{
public:
...
-5
votes
1answer
77 views
software pattern- what is this? [closed]
Is this similar to some software design pattern you may know?
I have an interface:
public interface IA {
}
and its child class which is sealed:
sealed public class A: IA {
}
Now that I have ...
12
votes
5answers
326 views
What makes a template different from a generic?
I understand the aspects of templates in C++ that are different from generics in Java and C#. C# is a reification, Java uses type erasure, C++ uses duck typing, etc. There are a number of things C++ ...
2
votes
2answers
49 views
How to generalize an iterator to a certain type
Consider these two functions, which work well for a std::vector:
int connectNode(GraphNode const& newNode,std::vector<GraphNode const*>::const_iterator beginCandidates, ...
0
votes
0answers
71 views
C# Generic type casting to template parameter type fails?
I am trying to create a system where by I promote a base class to a derived class and use it as such, however if you see the error below it seems it is trying to convert a 'NodeType' to the derived ...
3
votes
1answer
143 views
Generic member function pointer as template parameter inside another class
My question is similar to this. And 'Karrek SB's answer actually helped me somewhat.
I have these classes:
Base.h:
class Base{
public:
Base(){}
virtual ~Base(){}
virtual void init() = 0;
};
...
0
votes
2answers
59 views
Assignments using templates in c#
public class Animal
{
}
public class Cat : Animal
{
}
public class AnimalBag<T> where T : Animal
{
}
...
AnimalBag<Animal> bag = new AnimalBag<Cat>();
I get this error:
...
1
vote
2answers
83 views
Is it possible to have generic type in vhdl?
Is there a way in VHDL to have generic types? So for example I want to call a procedure but I'm not sure what type the signal has I want to give as paarameter, is it possible to declare the parameter ...
4
votes
2answers
74 views
Use a Template method in place of repeated code
I have 4 methods which have similar code
private void LogExceptions(ObjA.Input input, int customerId)
{
//ObjA is a big object, thats why I try not to send the whole object in this method
...
0
votes
2answers
61 views
How can I solve this ambiguousity wrt. mem_fun?
To practice, one of the topics I'm familiarizing myself with again is trees. The thing about depth-first search and breadth-first search is that they differ only in the choice of the data structure ...
1
vote
2answers
48 views
Standard stream output for template classes
To write an object into the command line (or other output streams) it is possible to overload the << operator. But is there any possibility to achieve this for templates?
Assume I have the ...
0
votes
2answers
95 views
Do Compiler Template Implementations Introduce Circular Dependencies?
I am working on an API in C++ and trying /really/ hard not to use RTTI, (Run-Time Type Information), to implement some dependency injection functionality.
I believe I can do this, but by utilizing ...
0
votes
3answers
49 views
How can I call a method from a Template?
I have this C# WinForms code in which I have several different structs, that all function in the same way. So instead of writing individual functions for adding or removing items, I'm trying to use ...
0
votes
2answers
146 views
Cannot create an instance of the variable type 'Item' because it does not have the new() constraint
I am trying to test a method - and getting an error:
Cannot create an instance of the variable type 'Item' because it does not have the new() constraint
Required information for below:
public ...
0
votes
0answers
64 views
Is this the most optimum way to remove duplication in generic algorithms with references and pointers [closed]
I wrote some c++ code to take a vector and call print on each one. I dont want two functions to deal with T* and T& so I ended up doing some compile time inspection to see if the the type to ...
-7
votes
1answer
91 views
Generic algorithm error in c++ [closed]
Hi i am having an error with the following generic implementation can anyone assist? Fails to call one of the get_unwrapped.get() methods complaining that Non-const lvalue reference to type ...
3
votes
2answers
213 views
Very generic argmax function in C++ wanted
I'm a spoiled Python programmer who is used to calculating the argmax of a collection with respect to some function with
max(collection, key=function)
For example:
l = [1,43,10,17]
a = max(l, ...
2
votes
2answers
81 views
How to use Java generics to avoid overwriting inherited methods (template-like behaviour)?
I want to make a Graph consiting of Nodes in Java. The graph class will be used by different people and different algorithms, so we will need different Node classes for each case, let's say ...
1
vote
1answer
81 views
How do I use a template type of an outer class as a field in an inner class in C++? [closed]
I have a C++ file that looks like the following.
// used for text debugging
#include
#include
//#include
#include
// stl includes
#include
#include
...
3
votes
1answer
201 views
P/Invoke C++ template<T> method from C#
I have defined in C++ function for external calls:
template<typename T>
void __declspec(dllexport) SwapMe(T *fisrt, T *second)
{
std::cout << typeid(T).name() << std::endl;
...
3
votes
1answer
87 views
Executing code according to specific types in C++
I'm trying to rewrite some code I wrote time ago with a functional language (OCaml) into C++.
My problem can be shortened into:
I have a stack of values
a value can be of a variant type (so a set ...
2
votes
5answers
96 views
C++ Templates - Having generic methods for templated types
I'm starting working with C++ templates just because I wanted to understand specific differences with other languages (Java) and I reached a point in which they started to diverge but I'm not getting ...
0
votes
2answers
119 views
How to store templated heterogeneous objects in an STL container
The question is about a code developed in MS Visual C++ 11, with access only to STL, no Boost.
There is a wrapper template class, roughly with this header:
template <typename Payload>
class ...
1
vote
2answers
44 views
Dynamic template dependency in a map
I am not quite sure how to phrase my question, so I am gonna give an example:
Take this map for example:
Map<Class<? extends DatabaseEntry>, Class<? extends IDecorator<? extends ...
1
vote
2answers
70 views
Choosing the data type for a generalized template class in main()
So I was asked to write a simple vector template and I believe I have written the class correctly, looking at some examples of generalized lists in our textbook (Savitch). Now I am trying to invoke ...
-2
votes
3answers
150 views
C++ generic data structures - data field assignment-operator vs copy c'tor [closed]
Does using an assignment operator instead of copy c'tor in generic structures, considered as bad coding? Or it doesn't matter because perhaps it's widely assumed that if there is a special c'tor for a ...
-1
votes
3answers
156 views
C++ resizing array using generics / templates
We have just been introduced to generics and templates in my comp sci class.
I have been asked to create a generic container class that supports storage and retrieval of any data type.
I have all of ...
0
votes
3answers
92 views
Java generic operation result type
I'm not professional Java programmer, so this question could be simple, but I have searched the web for the answer but found nothing so far.
Lets say we have a generic class in Java:
public class C1 ...
4
votes
3answers
113 views
Can you instantiate a template class at runtime using C#
Is it possible to instantiate a template class at runtime for example:
Type type = Type.GetType("iTry.Workflow.Person");
WorkflowPropertyViewModel<type> propViewModel = new ...
0
votes
2answers
144 views
Declare a partial specified templated matrix multiplication operator overload function as friend outside the class
I'm writing a matrix base class, and met the problem as the title.
Here is my declaration.
template <typename T, size_t m, size_t n, typename _Prd>
template <size_t _m, size_t _n>
const ...
0
votes
1answer
76 views
no matching function when return different template type from the original
I wrote a simple template matrix class, the getMat function should return a sub matrix of the original with different size , so I coded like this:
template <typename T, size_t m, size_t n, ...
2
votes
1answer
97 views
c++ template: Create a specialized function for a specific data type
I have a template Node below for storing some data in an array. Before adding I want to check if an entry is present with the same value (my insert logic needs it). For string type, i want to ...
0
votes
2answers
166 views
What does typename U = equal_to<T> in template mean ? STL equal_to<T> usage
I have been trying to understand this code
template <typename T, typename _Prd = equal_to<T> >
struct Vector3
{
protected:
T i,j,k;
_Prd comp;
public:
...
-1
votes
1answer
202 views
C++ Template Generics (template argument list)
I am trying to implement a Circular Doubly Linked List, and I have no probably with the Linked List implementation itself. The problem I am having is allowing it to take generic parameters using ...
0
votes
1answer
182 views
C++ Generic Linked List Separate Class
Ive been working on a linked list implementation. Previously i had it working for only char as the data type. I tried implementing generics/templates so i could use any data type.
I have 4 files in ...
2
votes
1answer
230 views
Java template classes using generator or similar?
Is there some library or generator that I can use to generate multiple templated java classes from a single template?
Obviously Java does have a generics implementation itself, but since it uses ...
0
votes
2answers
116 views
C++ Template performance inclusion model and inline model
If I have a C++ template I have two choices (without the export keyword) to link them:
Inclusion model with inlining - i.e. including the definitions together with the declarations in the .h file. ...
0
votes
2answers
90 views
Function template - Returning T based on input class? - C++
I have created a function template for loading my settings from a binary file.
template<class T> T LoadSettings(const std::string &fileName)
{
// Load settings
T settings;
...
-2
votes
1answer
45 views
unable to call the generic function,executeSQLQuery [closed]
I am facing one problem. While using the templates in C#, it will through the error as "Cannot implicitly convert type 'int' to T". I am unable to call the executeSQLQuery. Can any one please help for ...
0
votes
3answers
191 views
Java generics: Wildcard capture compilation error
I get following compilation errors:
The method sort(List<T>, Comparator<? super T>) in the type Collections is not applicable for the arguments (T[], Comparator<capture#1-of ? extends ...
