Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
12answers
14k views

Runtime vs Compile time

Can anyone please give me a good understanding of whats the difference between run-time and compile-time?
19
votes
5answers
446 views

How compile time recursion works?

I found a code here Printing 1 to 1000 without loop or conditionals Can someone please explain how compile time recursion works, couldn't find it in google // compile time recursion template<int ...
13
votes
5answers
644 views

Conditional compile-time inclusion/exclusion of code based on template argument(s)?

Consider the following class, with the inner struct Y being used as a type, eg. in templates, later on: template<int I> class X{ template<class T1> struct Y{}; template<class ...
13
votes
5answers
499 views

How to reduce compile time with C++ templates

I'm in the process of changing part of my C++ app from using an older C type array to a templated C++ container class. See this question for details. While the solution is working very well, each ...
11
votes
3answers
517 views

Calculating and printing factorial at compile time in C++

template<unsigned int n> struct Factorial { enum { value = n * Factorial<n-1>::value}; }; template<> struct Factorial<0> { enum {value = 1}; }; int main() { ...
10
votes
1answer
466 views

Force pre-computation of a constant

I have a constant declaration in Haskell -- can I force this to be evaluated ahead of time? I'm seeing some code that looks roughly like, myList = [(a, b), (c, d)] ... map (f . fst) myList take ...
9
votes
4answers
2k views

Static assert in C

What's the best way to achieve compile time static asserts in C (not C++), with particular emphasis on GCC?
8
votes
8answers
226 views

Compile time recursion and conditionals

I was reading the responses to "Printing 1 to 1000 without loop or conditionals" and I am wondering why it is necessary to have the special case for NumberGeneration<1> in the top answer. If I ...
8
votes
2answers
131 views

Ensure mutually exclusive interfaces at compile-time?

I'd like to ensure that two interfaces are never found on the same class at compile-time, similar to how AttributeUsage checks custom Attributes at compile-time. e.g.: ...
8
votes
4answers
1k views

Is sizeof in C++ evaluated at compilation time or run time?

For example result of this code snippet depends on which machine: the compiler machine or the machine executable file works? sizeof(short int)
8
votes
2answers
7k views

C++ Get name of type in template

I'm writing some template classes for parseing some text data files, and as such it is likly the great majority of parse errors will be due to errors in the data file, which are for the most part not ...
7
votes
2answers
208 views

Compile-time assertions with GHC Haskell?

Coming from C++, I'm used to be able to build simple forms of compile-time assertions, where I could emit warnings or errors during compilation if some simple conditions (e.g. over simple algebraic ...
7
votes
1answer
170 views

How to use “Template Constructors” in D?

The template documentation for D includes a small section called "Template Constructors". That section doesn't have any example or extensive documentation. I'm attempting to use that feature (I'm ...
7
votes
5answers
363 views

The mechanics of extension via free functions or member functions

Loads of C++ libraries, the standard included, allow you to adapt your objects for use in the libraries. The choice is often between a member function or a free function in the same namespace. I'd ...
6
votes
8answers
193 views

Detecting Endianess

I'm currently trying to create a C source code which properly handles I/O whatever the endianess of the target system. I've selected "little endian" as my I/O convention, which means that, for big ...
6
votes
4answers
542 views

Delphi {$IFDEF CONSOLE} Problem

I just tried program Project1; {$APPTYPE CONSOLE} uses SysUtils; begin {$IFDEF CONSOLE} beep; {$ENDIF} end. and expected to hear a beep during runtime, but not. The following test ...
6
votes
7answers
2k views

How To Get the Name of the Current Procedure/Function in Delphi (As a String)

Is it possible to obtain the name of the current procedure/function as a string, within a procedure/function? I suppose there would be some "macro" that is expanded at compile-time. My scenario is ...
6
votes
7answers
903 views

Do math functions of constant expressions get pre-calculated at compile time?

I tend to use math functions of constant expressions for convinience and coherence (i.e log(x)/log(2) instead of log(x)/0.3...). Since these functions aren't actually a part of the language itself, ...
6
votes
8answers
689 views

Using std::map<K,V> where V has no usable default constructor

I have a symbol table implemented as a std::map. For the value, there is no way to legitimately construct an instance of the value type via a default constructor. However if I don't provide a default ...
6
votes
5answers
3k views

C++ What is compile-time polymorphism and why does it only apply to functions?

The question is pretty much fully embedded in the title.
6
votes
5answers
873 views

Extracting Property Names For Reflection, with Intellisense and Compile-Time Checking

Ok. So I have some code that maps certain controls on a winForm to certain properties in an object, in order to do certain things to the controls when certain things happen to the data. All well and ...
5
votes
5answers
330 views

Understanding Compile- vs Run-time Dependencies

I understand the difference between runtime and compile-time and how to differentiate between the two, but I just don't see the need to make a distinction between compile-time and runtime ...
5
votes
1answer
61 views

Would the intialization value be computed at compile time or runtime?

if i have a function that uses the rand() function as its initialization value, would that value be found when the program compiles, or when the function is run? say: int function(int init = ...
5
votes
3answers
285 views

Encrypting a string literal at compile-time

I want to encrypt/encode a string at compile time so that the original string does not appear in the compiled executable. I've seen several examples but they can't take a string literal as argument. ...
5
votes
4answers
91 views

Compile time tree structure

I want to retrieve values from a tree stored in another system. For example: GetValue("Vehicle.Car.Ford.Focus.Engine.Oil.Color") To avoid typing errors and invalid keys, I want to check the name at ...
5
votes
6answers
424 views

Compile-time sizeof conditional

I want to define a macro if a condition involving sizeof is true and do nothing (but still compile) if it is false. If the preprocessor supported sizeof, it would look like this: #if (sizeof(void*) ...
4
votes
3answers
120 views

How to communicate range information to C++ compiler?

Is there any way to indicate to the compiler that you know the value of a particular variable must be within a particular range at a certain point in the code, to assist the compiler with optimizing? ...
4
votes
1answer
241 views

C++ type id at compile time

I want to generate a hash for a class based on its derived type at compile time. Today I generate it like: template<class Type> class TypeBase { public: static const unsigned s_kID; }; ...
4
votes
2answers
335 views

How to make a table (Data.Map) strict in haskell?

For learning Haskell (nice language) I'm triying problems from Spoj. I have a table with 19000 elements all known at compile-time. How can I make the table strict with 'seq'? Here a (strong) ...
4
votes
2answers
105 views

Why is a 'use' statement executed first in a BEGIN block?

When I execute the following code, I get Can't locate SomePackage.pm in @INC .... BEGIN { die; use SomePackage; } Why is use executed before die?
4
votes
4answers
279 views

General rules of passing/returning reference of array (not pointer) to/from a function?

We can pass reference of an array to a function like: void f(int (&a)[5]); int x[5]; f(x); //okay int y[6]; f(y); //error - type of y is not `int (&)[5]`. Or even better, we can ...
4
votes
3answers
233 views

How to use different overload of an inline function, depending on a compile time parameter?

I have a performance critical inline function, inline T func(T a, T b, int p). It can be optimized quite a bit, if p is known to be zero. However, I can't use an 'if' and penalize all the the other ...
4
votes
5answers
278 views

How to tell if class contains a certain member function in compile time

say there are 2 classes: struct A{ int GetInt(){ return 10; } }; struct B{ int m; }; I want to use object of type A or B in following function tempate< typename T > int GetInt( const T & ...
4
votes
3answers
166 views

organize using directives, re-run tests?

Before making a commit, I prefer to run all hundred-something unit tests in my C# Solution, since they only take a couple minutes to run. However, if I've already run them all, all is well, and then ...
4
votes
3answers
711 views

Is typeid of type name always evaluated at compile time in c++?

I wanted to check that typeid is evaluated at compile time when used with a type name (ie typeid(int), typeid(std::string)...). To do so, I repeated in a loop the comparison of two typeid calls, and ...
4
votes
5answers
693 views

convincing C# compiler that execution will stop after a member returns

I don't think this is currently possible or if it's even a good idea, but it's something I was thinking about just now. I use MSTest for unit testing my C# project. In one of my tests, I do the ...
4
votes
7answers
180 views

Unable to understand a statement about compilers' optimization

I am interested in optimization at runtime by a VM and at compile-time. I have had the idea that optimizations are most efficient and easiest at compile-time. However, my thought seems to be false in ...
3
votes
4answers
131 views

Compile time operators in C

I'm familiar with only one compile time operator in C - sizeof. Are there any others that I as a programmer should be aware of?
3
votes
5answers
65 views

java forcing compile-time evaluation

In java, is there a general way to enforce compile-time compilation? In a programming competition I'm in we are limited by the bytecode our robot can use every round while the program is running, so ...
3
votes
2answers
36 views

Method selection at compile time. What if the parameter can have several types?

I am led to believe that the java compiler does all the work of method selection at compile time (or am I wrong?). That is, it will decide exactly which method to use in which class at compile time by ...
3
votes
2answers
143 views

Get Class<T> at compile time?

In Java you can write: Class<SomeClass> foo = SomeClass.class; I'm playing around with Scala and want a bit more: I want to get a Method (and its generic type) at compile time, like this: ...
3
votes
8answers
190 views

Multiple inclusion of header files leads to longer compile time?

Does including the same header files multiple times increase the compilation time? For example, suppose every file in my project uses <iostream> <string> <vector> and ...
3
votes
2answers
553 views

run-time vs. compile-time iPhone version check

What's the difference between run-time, e.g., [[UIDevice currentDevice] systemVersion], and compile-time, e.g., __IPHONE_OS_VERSION_MIN_REQUIRED checking? When should you one over the other? ...
3
votes
6answers
293 views

Truly compile-time string hashing in C++

Basically I need a truly compile-time string hashing in C++. I don't care about technique specifics, can be templates, macros, anything. All other hashing techniques I've seen so far can only generate ...
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
123 views

Detecting if a bit is set (at compile time)

How to detect if bit at position n is set in constant variable?
3
votes
5answers
400 views

C/C++: Compile-time checking if right shift is arithmetic on signed types

I am wondering what is the most portable way of checking whether right shift is arithmetic when operating for on signed types (e.g. whether -2 >> 1 is -1) at compile-time. My idea is to check ...
3
votes
4answers
394 views

Can I make a constant from a compile-time env variable in csharp?

We use Hudson to build our projects, and Hudson conveniently defines environment variables like "%BUILD_NUMBER%" at compile time. I'd like to use that variable in code, so we can do things like log ...
3
votes
1answer
154 views

CompileTimeChecker from Modern C++ Design not working as expected

I've recently started reading Modern C++ Design by Andrei Alexandrescu. After reading Compile-Time Assertions, I tried the following code: template<bool> struct CompileTimeChecker { ...

1 2 3