The language-lawyer tag has no wiki summary.
149
votes
14answers
5k views
int a[] = {1,2,}; Weird comma allowed. Any particular reason?
Maybe I am not from this planet, but it would seem to me that the following should be a syntax error:
int a[] = {1,2,}; //extra comma in the end
But it's not. I was surprised when this code ...
35
votes
4answers
1k views
Pure virtual functions may not have an inline definition. Why?
Pure virtual functions are those member functions that are virtual and have the pure-specifier ( = 0; )
Clause 10.4 paragraph 2 of C++03 tells us what an abstract class is and, as a side note, the ...
28
votes
5answers
469 views
Understanding confusing typedef grammar
Consider the following code-snippet
typedef int type;
int main()
{
type *type; // why is it allowed?
type *k ;// which type?
}
I get an error 'k' is not declared in this scope. The compiler ...
26
votes
6answers
626 views
Unions as Base Class
The standard defines that Unions cannot be used as Base class, but is there any specific reasoning for this? As far as I understand Unions can have constructors, destructors, also member variables, ...
25
votes
2answers
368 views
Does casting to a pointer to a template instantiate that template?
static_cast<the_template<int>*>(0) - does this instantiate the_template with type int?
The reason for asking is the following code, which will error at linking time with an undefined ...
24
votes
1answer
274 views
Should the implementation guard itself against comma overloading?
For example uninitialized_copy is defined in the standard as:
Effects:
for (; first != last; ++result, ++first)
::new (static_cast<void*>(&*result))
typename ...
24
votes
4answers
275 views
Is there a useful case using a switch statement without braces?
In H&S5 I encountered the "most bizarre" switch statement (8.7.1, p. 277) not using braces.
Here's the sample:
switch (x)
default:
if (prime(x))
case 2: case 3: case 5: case 7:
...
23
votes
4answers
584 views
Repeated typedefs - invalid in C but valid in C++?
I would like a standard reference why the following code triggers a compliance warning in C (tested with gcc -pedantic; "typedef redefinition"), but is fine in C++ (g++ -pedantic):
typedef struct Foo ...
22
votes
3answers
1k views
casting via void* instead of using reinterpret_cast
I'm reading a book and I found that reinterpret_cast should not be used directly, but rather casting to void* in combination with static_cast:
T1 * p1=...
void *pv=p1;
T2 * p2= ...
20
votes
2answers
243 views
C++03. Test for rvalue-vs-lvalue at compile-time, not just at runtime
In C++03, Boost's Foreach, using this interesting technique, can detect at run-time whether an expression is an lvalue or an rvalue. (I found that via this StackOverflow question: Rvalues in C++03 )
...
20
votes
6answers
577 views
Ambiguous member access expression: is Clang rejecting valid code?
I have some code that, for the purposes of this question, boils down to
template<typename T>
class TemplateClass : public T {
public:
void method() {}
template<typename U>
static ...
19
votes
7answers
721 views
Do dynamic libraries break C++ standard?
The C++ standard 3.6.3 states
Destructors for initialized objects of static duration are called as a result of returning from main and as a result of calling exit
On windows you have FreeLibrary and ...
19
votes
3answers
480 views
Is it undefined behaviour to delete a null void* pointer?
I know that deleteing a null pointer is a no-op:
In either alternative, if the value of the operand of delete is the null pointer the operation has no effect.
(C++ Standard 5.3.5 [expr.delete] ...
18
votes
2answers
237 views
Why must a base class destructor be accessible only when a custom constructor is declared?
Comeau, g++ (ideone) and EDG accept the following code without diagnostic. Visual C++ compiles successfully, albeit with warning C4624.
class indestructible_base
{
~indestructible_base();
};
...
18
votes
2answers
295 views
Initializing mutually-referencing objects
Consider the following pair of mutually referencing types:
struct A;
struct B { A& a; };
struct A { B& b; };
This can be initialized with aggregate initialization in GCC, Clang, Intel, ...
18
votes
2answers
577 views
What is a “byte” in C / C++
For example, here's a reference for fread:
size_t fread ( void * ptr, size_t size, size_t count, FILE * stream );
Reads an array of count elements, each one with a size of "size bytes"...
So how ...
17
votes
8answers
479 views
How undefined is undefined behavior?
I'm not sure I quite understand the extent to which undefined behavior can jeopardize a program.
Let's say I have this code:
#include <stdio.h>
int main()
{
int v = 0;
scanf("%d", ...
17
votes
2answers
395 views
Strange C++ rule for member function pointers? [closed]
Possible Duplicate:
Error with address of parenthesized member function
In this recent question the OP ran into a strange provision of the C++ language that makes it illegal to take the ...
17
votes
3answers
474 views
typedef and non-simple type specifiers
Why is this code invalid?
typedef int INT;
unsigned INT a=6;
whereas the following code is valid
typedef int INT;
static INT a=1;
?
As per my understanding unsigned int is not a "simple type ...
16
votes
3answers
156 views
Returning struct containing array
The following simple code segfaults under gcc 4.4.4
#include<stdio.h>
typedef struct Foo Foo;
struct Foo {
char f[25];
};
Foo foo(){
Foo f = {"Hello, World!"};
return f;
}
int ...
16
votes
3answers
240 views
Is &*p valid C, given that p is a pointer to an incomplete type?
Is the following example a valid complete translation unit in C?
struct foo;
struct foo *bar(struct foo *j)
{
return &*j;
}
struct foo is an incomplete type, but I cannot find an explicit ...
16
votes
2answers
238 views
Why is it forbidden to open multiple namespaces at a stretch?
It's possible to do using namespace foo::bar; (i.e., using the inner namespace without using the outer namespace first / at all), why does the standard forbid to do the following?
namespace foo::bar ...
16
votes
4answers
1k views
Sequence points and partial order
A few days back there was a discussion here about whether the expression
i = ++i + 1
invokes UB
(Undefined Behavior) or not.
Finally the conclusion was made that it invokes UB as the value of ...
15
votes
2answers
304 views
How to correctly reference a function in an anonymous namespace
Consider this fragment of C++ code:
namespace
{
void f()
{
}
class A
{
void f()
{
::f(); // VC++: error C2039: 'f' : is not a member of '`global ...
14
votes
7answers
474 views
What most ingenious excuses of undefined behavior are there?
In about every other case where something is classified as undefined behavior there're lots of objections - instead of admitting that code contains an error that should be queued for fixing people try ...
13
votes
4answers
224 views
Pointer to member that is a reference illegal?
Let us say I have:
// This is all valid in C++11.
struct Foo {
int i = 42;
int& j = i;
};
// Let's take a pointer to the member "j".
auto b = &Foo::j; // Compiler is not happy here
...
12
votes
4answers
153 views
Is const-casting via a union undefined behaviour?
Unlike C++, C has no notion of a const_cast. That is, there is no valid way to convert a const-qualified pointer to an unqualified pointer:
void const * p;
void * q = p; // not good
First off: ...
12
votes
1answer
224 views
Does overloading the comma operator *really* affect the order of evaluation of its operands?
The comma operator guarantees left-to-right evaluation order.
[n3290: 5.18/1]: The comma operator groups left-to-right.
expression:
assignment-expression
expression , assignment-expression
...
12
votes
2answers
197 views
Ambiguous injected class name is not an error
What I read in the C++ standard about injected class names contradicts (as I see it) with the behavior of a sample program I will present shortly. Here's what I read:
From 3.4 (paragraph 3)
The ...
12
votes
4answers
478 views
What is the purpose of pure virtual destructor? [closed]
Possible Duplicates:
Under what circumstances is it advantageous to give an implementation of a pure virtual function?
Why do we need a pure virtual destructor in C++?
Compiler doesn't ...
11
votes
1answer
377 views
Is `*--p` actually legal(well formed) in C++03
I'm wondering about this sample piece of code:
int main()
{
char *p ;
char arr[100] = "Hello";
if ((p=arr)[0] == 'H') // do stuffs
}
Is this code actually well formed in C++03?
My ...
11
votes
2answers
272 views
If I jump out of a catch-block with “goto”, am I guaranteed that the exception-object will be free'ed?
I have such code as follows
try {
doSomething();
} catch(InterruptException) {
goto rewind_code;
}
if(0) {
rewind_code:
longjmp(savepoint, 1);
}
My question is, is the exception object that ...
10
votes
3answers
189 views
What C program behaves differently in run-time when compiled with C89 and C99?
I found the following snippet (I think in Wikipedia) that creates a different run-time when C++ comments are recognized than when not:
int a = 4 //* This is a comment, but where does it end? */ 2
;
...
10
votes
5answers
221 views
Can the type difference between constants 32768 and 0x8000 make a difference?
The Standard specifies that hexadecimal constants like 0x8000 (larger than fits in a signed integer) are unsigned (just like octal constants), whereas decimal constants like 32768 are signed long. ...
10
votes
1answer
214 views
constexpr undefined behaviour
I've been experimenting with constexpr. On my test compiler (g++ 4.6) this fails to compile with an error about out of bounds access. Is a compiler required to spot this at compile time?
#include ...
10
votes
4answers
385 views
Is there any difference between && and & with bool(s)?
In C++, is there any difference between doing && (logical) and & (bitwise) between bool(s)?
bool val1 = foo();
bool val2 = bar();
bool case1 = val1 & val2;
bool case2 = val1 ...
10
votes
2answers
189 views
Why static method overrides base class non-static method?
struct B {
void foo () {}
};
struct D : B {
using B::foo;
static void foo () {}
};
int main ()
{
D obj;
obj.foo(); // calls D::foo() !?
}
Member method and static member method are ...
10
votes
2answers
436 views
The effect of `basic_streambuf::setbuf`
My problem is as follows: Martin York claims in this, this, and this answers that one can make a stringstream read from some piece of memory by using basic_stringbuf::pubsetbuf like this:
char ...
9
votes
3answers
95 views
Different behavior for qualified and unqualified name lookup for template
How should this code behave? It calls generic function ignoring my overload if I use qualified name in call_read() function; and it calls overload first and then generic version if I use unqualified ...
9
votes
3answers
269 views
Does an observable difference exist using `unsigned long` and `unsigned int` in C (or C++) when both are 32 bits wide?
I'm using an MPC56XX (embedded systems) with a compiler for which an int and a long are both 32 bits wide.
In a required software package we had the following definitions for 32-bit wide types:
...
9
votes
1answer
134 views
Can I default a private constructor in the class body or not?
GCC 4.5 doesn't let me do this:
class foo {
public:
foo() = default;
private:
foo(foo const&) = default;
foo& operator=(foo const&) = default;
};
It complains that:
...
9
votes
5answers
186 views
Is printing an empty string observable behavior in C++?
In C++03 Standard observable behavior (1.9/6) includes calls to library I/O functions. Now I have this code:
printf( "" );
which is formally a call to a library I/O function but has no effect.
Is ...
9
votes
4answers
365 views
Why “using namespace X;” is not allowed inside class/struct level?
class C {
using namespace std; // error
};
namespace N {
using namespace std; // ok
}
int main () {
using namespace std; // ok
}
Edit: Want to know motivation behind it.
9
votes
1answer
233 views
C++: Is a namespace required when referring to the base class
I have code like this:
namespace N {
class B {
public:
virtual void doStuff(B *) = 0;
};
}
// not in a namespace
class Derived : public N::B {
public:
void doStuff(B ...
8
votes
3answers
155 views
Does C++11 change the behavior of explicitly calling std::swap to ensure ADL-located swap's are found, like boost::swap?
Background
Consider for this question the following code:
#include <utility>
namespace ns
{
struct foo
{
foo() : i(0) {}
int i;
private:
foo(const ...
8
votes
2answers
169 views
Are there well-known “profiles” of the C standard?
I write C code that makes certain assumptions about the implementation, such as:
char is 8 bits.
signed integral types are two's complement.
>> on signed integers sign-extends.
integer ...
8
votes
1answer
177 views
Integer multiplication mod 2³² in Actionscript 3
Has anyone come across an authoritative specification of how arithmetic on int and uint works in Actionscript 3? (By "authoritative" I mean either "comes from Adobe" or "has been declared ...
8
votes
2answers
354 views
Is it still safe to delete nullptr in c++0x?
In c++03 it is pretty clear that deleting a null pointer has no effect. Indeed, it is explicitly stated in ยง5.3.5/2 that:
In either alternative, if the value of the operand of delete is the null ...
8
votes
5answers
324 views
Why virtual function can't be unimplemented when allocated with 'new'?
struct A
{
virtual void foo(); // unused and unimplemented
virtual void bar () {}
};
int main ()
{
A obj; // ok
obj.bar(); // <-- added this edition
A* pm = ...
8
votes
4answers
387 views
Is the C++ Standard Library part of the C++ Language?
Is the C++ Standard Library part of the C++ Language? (note "language", not "standard"; both are, of course, part of the standard).
If so, why? If not, why not?
The answer to this question may ...