The constant-expression tag has no wiki summary.
21
votes
3answers
337 views
Pointer conversion issue with Ternary operator
I know the ternary operator has some surprising restrictions, but I was a bit baffled that this fails to compile for me:
void foo(bool b)
{
int* ptr = ((b) ? NULL : NULL);
}
Obviously that's ...
20
votes
3answers
338 views
Why can't a constant pointer be a constant expression?
The following program compiles:
template <const int * P>
class Test{};
extern const int var = 42; //extern needed to force external linkage
int main()
{
Test<&var> test;
}
...
11
votes
1answer
261 views
Can i have a negative value as constant expression in Scala?
I have an Java-Annotation that return a double value:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface DoubleValue {
double value();
}
When i try to attach the ...
10
votes
2answers
375 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 ...
7
votes
2answers
343 views
Details of what constitutes a constant expression in C?
C defines at least 3 levels of "constant expression":
constant expression (unqualified)
arithmetic constant expression
integer constant expression
6.6 paragraph 3 reads:
Constant expressions ...
4
votes
2answers
86 views
How to check if a parameter is an integral constant expression in a C preprocessor macro?
I'm currently cleaning up an existing C-library to publish it shamelessly.
A preprocessor macro NPOT is used to calculate the next greater power of two for a given integral constant expression at ...
4
votes
2answers
408 views
How to set string (or AnsiString) constant in the TVarRec?
I want to pass the formatting arguments Args into the Format function.
I found some examples of that, but I can't find out how to assign string constant in the TVarRec member. The following code fails ...
3
votes
2answers
141 views
Typo at msdn page “C++ Constant Expressions”?
It says at msdn page for c++ constant expressions that:
Nonintegral constants must be
converted (either explicitly or
implicitly) to integral types to be
legal in a constant expression.
...
2
votes
2answers
325 views
cannot appear in a constant-expression
In the following c++ program:
static const int row = (dynamic_cast<int>(log(BHR_LEN*G_PHT_COUNT)/log(2)));
static const int pht_bits = ((32*1024)/(G_PHT_COUNT * G_PHT_COUNT * BHR_LEN));
...
2
votes
5answers
174 views
Address of static const isn't const expression?
I though address-of-static was a constant expression as in the example below but I get a compiler error (or is this new to C++0x?)
class X {
static const int x;
enum { y = &x };
};
2
votes
9answers
3k views
C++ expected constant expression
#include <iostream>
#include <fstream>
#include <cmath>
#include <math.h>
#include <iomanip>
using std::ifstream;
using namespace std;
int main (void)
{
int count=0;
...
1
vote
7answers
929 views
error: switch quantity not an integer
I have researched my issue all over StackOverflow and multi-google links, and I am still confused. I figured the best thing for me is ask...
Im creating a simple command line calculator. Here is my ...
1
vote
3answers
176 views
Will the Java compiler precalculate sums of literals?
int i = 10 + 20;
Is it true that the compiler will process this code, adding 10 + 20, and the byte code is the same as for this line of code?
int i = 30;
Where can I read about it?
1
vote
6answers
280 views
Example of Something Which Is, and Is Not, a Constant Expression in C?
I'm a tad confused between what is and is not a Constant Expression in C, even after much Googleing. Could you provide an example of something which is, and which is not, a Constant Expression in C?
1
vote
3answers
126 views
Constant expression with custom object
I'm trying to use an instant of a custom class as a template parameter.
class X {
public:
X() {};
};
template <class Foo, Foo foo>
struct Bar {
};
const X x;
Bar<X, x> foo;
The ...
0
votes
1answer
57 views
Must a constant expression be evaluated to an integral type?
Lets say I have the following:
int i = 1;
String str("abc");
Would str be consider a constant expression?
From lots of C++ books, it seems a constant expression must be evaluated to an integral ...
0
votes
1answer
181 views
Comparing ALAssetGroupType in switch statement
Hi I am calling ALAssetsLibrary's
-enumerateGroupsWithTypes:ALAssetsGroupAll usingBlock:block failureBlock:failure;
then inside the enumeration block i want to compare the type of group returned ...
0
votes
4answers
174 views
Creating array with constant
I was working on a program in Netbeans on Linux using a gcc compiler when, upon switching to Visual C++ on Windows 7, the code failed to compile as Visual C++ says it expected constant expression on ...