The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
92 views

Is there a better way implementing Java-like local class in C++?

There are situations that I have to choose local classes over lambda when overloading operator() is not enough or when I need virtual functions or something else. um.. for example: I need a object ...
0
votes
2answers
120 views

Java: Using a local class in a parameterized type for a local variable referenced inside the local class

I am implementing a certain algorithm in a single method in Java. This algorithm needs a data structure that will not be used anywhere else, so it seems appropriate to me to use a local class. The ...
0
votes
3answers
150 views

How to use friend function of local class?

Since a friend function can be declared in a local class as shown in the following example. How can it be used to access members of local class when it is defined in the function definition which ...
1
vote
1answer
73 views

Why does Java complain that it can't find my local class?

I am trying to setup Dozer to perform a complex mapping between my two entities. Essentially, I want it to convert my percentCompleted double to a boolean, based on if the value is 1 (100%) or not. ...
20
votes
3answers
595 views

Local classes : C++03 vs. C++11

Is there any change in the usage of local class in C++11? It seems in C++03 local classes cannot be used as template argument (I recall that). Consider this code, template<typename T> void ...
4
votes
3answers
452 views

Why aren't static members allowed in local classes?

What is the reasoning to why static const members cannot exist in local classes? It seems like a rather silly restriction. Example: void foo() { struct bar { int baz() { return 0; } // ...
7
votes
4answers
182 views

Java. local classes is there any reason not to make it final?

I have a question about local classes in Java (classes that declares in the method or in blocks bounded by { }). Is there any reason not to declare local class as final? We cannot inherit other class ...
4
votes
3answers
251 views

Are Local class, Inner class and Nested class are the same things in C++?

Are Local class, Inner class and Nested class mean same things in C++?
11
votes
5answers
349 views

Why field inside a local class cannot be static?

void foo (int x) { struct A { static const int d = 0; }; // error } Other than the reference from standard, is there any motivation behind this to disallow static field inside an inner class ? ...
2
votes
3answers
264 views

Java local classes and interfaces

I was wondering if the next thing is possible for implementation: Lets say I've got 2 interfaces while each one of them has 1 function header. For example, iterface1 has function g(...) and ...
4
votes
2answers
2k views

Why can't a struct defined inside a function be used as functor to std::for_each?

The following code won't compile. The compiler complains about *no matching function for call to for_each*. Why is this so? #include <map> #include <algorithm> struct Element { void ...
-1
votes
1answer
362 views

Mutual C++ classes declared inside of a function

How do I define classes inside of a function so that they "know" about each other? Here is a greatly dumbed down version of what I'm trying to understand. I'd like to do something like: void foo () ...
18
votes
1answer
1k views

Member template in local class

Given the following code: void f() { class A { template <typename T> void g() {} }; } g++ 4.4 (and also g++-4.6 -std=gnu++0x) complains: "invalid ...
5
votes
4answers
167 views

Access problem in local class

void foobar(){ int local; static int value; class access{ void foo(){ local = 5; /* <-- Error here */ value = 10; } }bar; ...
3
votes
4answers
1k views

Local Classes in C++

I am reading "Local Classes" concept in Object-oriented programming with C++ By Balagurusamy (http://highered.mcgraw-hill.com/sites/0070593620/information_center_view0/). The last line says ...
1
vote
1answer
351 views

How to use local classes with templates?

GCC doesn't seem to approve of instanciating templates with local classes: template <typename T> void f(T); void g() { struct s {}; f(s()); // error: no matching function for call to ...
4
votes
2answers
548 views

C++ can local class reference be passed to a function?

I would like to know if the following is allowed: template < class C > void function(C&); void function() { class {} local; function(local); } thanks
11
votes
2answers
640 views

Why can't a std::vector take a local type?

void foo() { struct Foo { .. }; std::vector<Foo> vec; // why is this illegal? } I'm not returning Foo to the outside world. It's just a temporary type that I use within the function.
3
votes
2answers
1k views

How to get address of member function for local class defined in function (C++)

I am trying to do the following: Obtain the address of a member function from a class that was locally defined within a function. class ConnectionBase { }; template class<EventType, SinkType> ...
1
vote
2answers
711 views

Local classes inside inline non-member function produces LNK2005 with MSVC2005

Apparently, MSVC2005 fails to inline local classes' member functions which leads to LNK2005. I'm facing this LNK2005 error when compiling the following: common.h content: inline void wait_what() { ...