Tagged Questions

3
votes
1answer
142 views

final static String defined in an interface not evaluated at compile time - Android

I have two classes and an interface (for example DatabaseModel, LocalStore, and InternalModelInterface). They're defined as follows; public class DatabaseModel { // ... public static final String ...
3
votes
1answer
247 views

How do I output a compile-time numeric constant during compilation in Visual C++?

Visual C++ has #pragma message that outputs a string into compiler output. Now I have a factory: template<class Type> CComPtr<Type> CreateComObject() { CComPtr<Type> newObject( ...
0
votes
4answers
259 views

Static data structures

Is there any way to create Map or Set type data structures at compile time? The reason I ask this is because I'm working with App Engine and I have some data structures that need to be sorted and ...
0
votes
2answers
255 views

How to give dynamically created buttons actions for each one - part 2

Hi again fellow Flashers :) My first question poised here at StackOverFlow dealt with this issue, I had an array which created a few different buttons. However I didn't know how to assign actions to ...