Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
350 views

Why doesn't a Java constant divided by zero produce compile time error? [closed]

Possible Duplicate: Is 1/0 a legal Java expression? Why does this code compile? class Compiles { public final static int A = 7/0; public final static int B = 10*3; public ...
9
votes
2answers
224 views

C# - Why are DateTime.MinValue and MaxValue not compile-time constants?

I wanted to have an optional date parameter for a method (defaulted to MinValue), in order to check if the user had actually supplied a value or not (supplying MinValue was invalid), but I'm not ...
8
votes
6answers
1k views

Are all compile-time constants inlined?

Let's say I have a class like this: class ApplicationDefs{ public static final String configOption1 = "some option"; public static final String configOption2 = "some other option"; public static ...
7
votes
2answers
295 views

Where to put compile-time-constant arrays?

Say I have an array storing the first 10 primes, like this: const int primes[] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29}; This is all very fine and simple as long as I have 1 .cpp file. However, if I ...
7
votes
3answers
769 views

C++ compile-time constant detection

Tbere're cases when a library source is available, and it has to support variable parameters in general, but in practice these parameters are commonly constants. Then it may be possible to optimize ...
5
votes
4answers
628 views

How to declare a constant Guid in C#?

Is it possible to declare a constant Guid in C#? I understand that I can declare a static readonly Guid, but is there a syntax that allows me to write const Guid?
5
votes
3answers
253 views

Help with type traits

Suppose we have the following template class template<typename T> class Wrap { /* ... */ }; We can not change Wrap. It is important. Let there are classes derived from Wrap<T>. For ...
4
votes
3answers
115 views

Clojure compile-time constants

This question comes purely from "mental masterbation" and probably has no practical value. If I define a value in Clojure using def, can the compiler be induced to evaluate it at compile time, and ...
4
votes
2answers
142 views

Common constants for an AVR / Linux GCC C++ project

I'm creating software for an Linux + AVR Arduino project. Obviously the whole work is split in several projects in Eclipse (I'm not using Arduino IDE). I'd like to use common, mostly string, constants ...
4
votes
7answers
3k views

Java switch statement: Constant expression required, but it IS constant

So, I am working on this class that has a few static constants: public abstract class Foo { ... public static final int BAR; public static final int BAZ; public static final int BAM; ...
4
votes
3answers
119 views

Different behavior of compilers with array allocation

I recently found a interesting behaviour of g++ when compared with MSVC++ 2008. Consider this tiny program: #include <cstdlib> const int ARR_LENGTH = 512; void doSomething( int iLen ); int ...
3
votes
1answer
130 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
219 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( ...
3
votes
3answers
206 views

How to efficiently implement an immutable graph of heterogenous immutable objects in C++?

I am writing a programming language text parser, out of curiosity. Say i want to define an immutable (at runtime) graph of tokens as vertices/nodes. These are naturally of different type - some tokens ...
3
votes
5answers
187 views

Time consts in Java?

Is there a Java package with all the annoying time consts , like miliseconds/seconds/minutes in a minute / hour /day / year ? I'd hate to duplicate something like that
3
votes
7answers
2k views

Can I compute pow(10,x) at compile-time in c?

Is it possible to compute pow(10,x) at compile time? I've got a processor without floating point support and slow integer division. I'm trying to perform as many calculations as possible at ...
3
votes
5answers
592 views

initialize a variable statically (at compile time)

1) I've got many constants in my C algo. 2) my code works both in floating-point and fixed-point. Right now, these constants are initialized by a function, float2fixed, whereby in floating-point it ...
2
votes
3answers
102 views

constexpr overloading

Related: Probrem with constexpr - how to resolve it I feel like constexpr is limited in usefulness in C++11 because of the inability to define two functions that would otherwise have the same ...
2
votes
3answers
434 views

C++ class/structure data member offset as constant expression

Taking offset of a data member is as easy as this: #define MEMBER_OFFSET(Type, Member) \ ((unsigned long)(((char *)&((Type *)0)->Member) - (char *)0)); I want to make this a constant ...
1
vote
1answer
205 views

Objective-c constant static NSArray

I am a Java programmer, learning Objective-C and I have a problem with implementation of variables, similar to static final class variables in Java. In class PolygonShape, I would like to have ...
1
vote
1answer
74 views

How to define a constraint on class type if It has custom attribute?

there is any way to force a class to implement an interface , if It has an specific custom attribute? I want to have a compile time error , if the class with specific attribute does not implement an ...
0
votes
3answers
73 views

How to define a const double inside a class's header file?

Inside the header file of my class, I am trying the following and getting compiler complaints: private: static const double some_double= 1.0; How are you supposed to actually do this?
0
votes
5answers
142 views

hexadecimal constant in c is unsigned even though i used the L suffix

I know this is a simple question but I'm confused. I have a fairly typical gcc warning that's usually easy to fix: warning: comparison between signed and unsigned integer expressions Whenever I ...
0
votes
5answers
436 views

Defining colors as constants in C#

I've set up some default colors in a C# winforms application like so: readonly Color ERROR = Color.Red; readonly Color WARNING = Color.Orange; readonly Color OK = Color.Green; As far as I am aware, ...
0
votes
3answers
100 views

Is this a BUG of VC++ 2010? About declaring a constant object in a header

Several lines of code are worth a thousand words: I have three simple files: header.h, main.cpp, other.cpp ==== CODE BEGIN ==== // header.h #pragma once const void* p = 0; // main.cpp ...
0
votes
4answers
248 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
1answer
262 views

Get compile-time variable at runtime

I am trying to use the "define" mxmlc compiler option to embed compile-time constants into my SWF files. <mxmlc ...> <define name="NAMES::PluginCompileTime" value="Hello World!"/> ...
0
votes
2answers
252 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 ...