python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Template class implementation has compilation issues
I am creating an object using static member function of a class. and then calling a function inside.
int main(){
int a = 49;
auto foo = Foo::createFoo(a);
foo->study();
}
Implementation
for...
RC0993
Votes: 0
Answers: 1
LinkedList That Accept Any Type Of Object At Same Time
Is it possible to implement a linkedlist that accept any type of objects at same time ?
for example : list.add(int) , list.add(float) , list.add(object1) , list.add(object2)
as you can see i added dif...
Islah Amine
Votes: 0
Answers: 1
Controlling text formatting, linebreaks, and colors of custom button with template
I've been asked to build a relatively simple application launcher program (to replace an old DOS-based menu system). I've built the application in WPF and created a custom class derived from Button c...
CEhret
Votes: 0
Answers: 1
Concepts: require a function on a type without default constructing that type
I need to require of some type A that there exists a function f(A, A::B).
I'm testing that by calling f with instances of A and A::B. Is there a less ostentatious way to test against an instance of th...
Matt Murphy
Votes: 0
Answers: 2