Tagged Questions
The standards-compliance tag has no wiki summary.
915
votes
24answers
84k views
What is the name of this operator: “-->”?
After reading "Hidden Features and Dark Corners of C++/STL" on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4. The code:
...
56
votes
10answers
3k views
Is main() really start of a C++ program?
The section $3.6.1/1 from the C++ Standard reads,
A program shall contain a global
function called main, which is the
designated start of the program.
Now consider this code,
int square(int ...
44
votes
4answers
6k views
C++ new int[0] — will it allocate memory?
A simple test app:
cout << new int[0] << endl;
outputs:
0x876c0b8
So it looks like it works. What does the standard say about this? Is it always legal to "allocate" empty block of ...
42
votes
4answers
1k views
Can a destructor be recursive?
Is this program well-defined, and if not, why exactly?
#include <iostream>
#include <new>
struct X {
int cnt;
X (int i) : cnt(i) {}
~X() {
std::cout << ...
34
votes
12answers
27k views
Can an html element have multiple ids?
I understand that an id must be unique within an HTML/XHTML page.
My question is, for a given element, can I assign multiple ids to it?
<div id="nested_element_123 task_123"></div>
I ...
32
votes
3answers
1k views
When does invoking a member function on a null instance result in undefined behavior?
This question arose in the comments of a now-deleted answer to this other question. Our question was asked in the comments by STingRaySC as:
Where exactly do we invoke UB? Is it calling a member ...
25
votes
7answers
2k views
How universally is C99 supported?
How universally is the C99 standard supported in today's compilers ? I understand that not even GCC fully supports it. Is this right ?
Which features of C99 are supported more than others, i.e. which ...
19
votes
10answers
5k views
Is it valid to have a html form inside another html form
Is it valid html to have the following:
<form action="a">
<input.../>
<form action="b">
<input.../>
<input.../>
<input.../>
...
17
votes
2answers
392 views
What are the WONTFIX bugs on GNU/Linux and how to work around them? [closed]
Both Linux and the GNU userspace (glibc) seem to have a number of "WONTFIX" bugs, i.e. bugs which the responsible parties have declared their unwillingness to fix despite clearly violating the ...
16
votes
4answers
619 views
Tricky CSS Layout
So I am making a website with quite a problematic layout. There are four corner images TL, TR, BL and BR indicated by black blocks. The dark orange area is the main content (to a width of 960px), ...
16
votes
12answers
1k views
Is XHTML compliance pointless?
I'm building a site right now, so far I've painfully forced everything to be compliant and it looks pretty much the same across browsers. However, I'm starting to implement some third party/free ...
15
votes
3answers
569 views
Current state of HTTP State Management Mechanism (Cookies)
I was wondered whether there is a survey or report of the current state of browser compliance with the three Cookie specifications: Netscape’s original draft, RFC 2109, and RFC 2965 that obsoletes RFC ...
13
votes
3answers
347 views
Gnu C++ macro __cplusplus standard conform?
The Gnu C++ compiler seems to define __cplusplus to be 1
#include <iostream>
int main() {
std::cout << __cplusplus << std::endl;
}
This prints 1 with gcc in standard c++ mode, ...
12
votes
1answer
378 views
__USE_FILE_OFFSET64 vs. _FILE_OFFSET_BITS=64
I am trying to maintain code that compiles on lots of different systems. I've seen a dozen different ways of asking for lseek that takes 64-bits. Some systems use lseek64, some use lseeko, some ...
12
votes
8answers
5k views
How useful is PHP CodeSniffer? Code Standards Enforcement in General?
I'm dabbling with the idea of setting up PHP CodeSniffer on our continuous integration server in an effort to improve the quality of our code-base. After reading the documentation I'm very excited ...
11
votes
3answers
334 views
“as if” in language standards
What is the exact meaning of the phrase "as if" in standards and how does it work when a user can modify individual parts of the behavior.
The question is in regards to the C++ standard when talking ...
10
votes
1answer
431 views
Is std::vector::push_back permitted to throw for any reason other than failed reallocation or construction?
Consider:
std::vector<int> v;
v.reserve(1);
v.push_back(1); // is this statement guaranteed not to throw?
I've chosen int because it has no constructors that could throw - obviously if some ...
9
votes
3answers
120 views
Dependencies in Initialization Lists
Is this behavior well-defined?
class Foo
{
int A, B;
public:
Foo(int Bar): B(Bar), A(B + 123)
{
}
};
int main()
{
Foo MyFoo(0);
return 0;
}
9
votes
4answers
667 views
C++ crazy typedef : what is the point of allowing this syntax by the Standard?
The old familiar one:
typedef int my_int; //cute
This syntax is perfect. No problem.
Now, when we can write typedefs like above, then what is the point of allowing this syntax:
int typedef ...
9
votes
4answers
21k views
How to programmatically turn off quirks mode in IE8 WebBrowser control?
I want to use IE8 as a WebBrowser control in a C# application. How can I disable "quirks mode" and force IE into standards compliance (as far as it is implemented)?
8
votes
5answers
197 views
Strict ISO C Conformance Test
I am currently working on a C project that needs to be fairly portable among different building environments. The project targets POSIX-compliant systems on a hosted C environment.
One way to achieve ...
8
votes
1answer
220 views
C++0x is assignment of braced-init-list to an array correct?
n3092 (final draft) says, under 5.17/9
A braced-init-list may appear on the right-hand side of
- an assignment to a scalar [...]
- an assignment defined by a user-defined assignment ...
8
votes
3answers
208 views
Can threads be safely created during static initialization?
At some point I remember reading that threads can't be safely created until the first line of main(), because compilers insert special code to make threading work that runs during static ...
7
votes
8answers
1k views
Difference between scanf() and strtol() / strtod() in parsing numbers
Note: I completely reworked the question to more properly reflect what I am setting the bounty for. Please excuse any inconsistencies with already-given answers this might have created. I did not want ...
7
votes
4answers
1k views
JSON Spec - does the key have to be surrounded with quotes?
Example:
Is the following code valid against the JSON Spec?
{
precision: "zip"
}
Or should I always use the following syntax? (And if so, why?)
{
"precision": "zip"
}
I haven't really ...
7
votes
4answers
601 views
Do you commonly use Link Relations (“rel” attributes)?
I'm eager to move towards a more standards-based, accessible and semanticly-correct web development approach. At the office, I don't expect there to be huge changes straight away, but I'm trying to ...
6
votes
1answer
152 views
Does HttpUtility.UrlEncode match the spec for 'x-www-form-urlencoded'?
Per MSDN
URLEncode converts characters as follows:
Spaces ( ) are converted to plus signs (+).
Non-alphanumeric characters are escaped to their hexadecimal representation.
Which is ...
6
votes
1answer
46 views
Standard defining json file extensions?
Is there a standard or specification which defines json file extensions?
I've seen .json used - is this just a commonly accepted practice or is it a requirement of some standards body for json saved ...
6
votes
4answers
491 views
Why does std::cout convert volatile pointers to bool?
If you try to cout a pointer to a volatile type, even a volatile char pointer where you would normally expect cout to print the string, you will instead simply get '1' (assuming the pointer is not ...
6
votes
2answers
308 views
Where in the world are encrypted software in cash registers required and in that case what security measures are required?
Background
Sweden is transitioning to a compulsory law for all business owners handling cash or card transactions, to implement/buy partially-encrypted POS (point of sale)/cash registers:
Signing ...
6
votes
9answers
234 views
How does the Traditional “HTML is only for content” line of thought handle dynamic formatting?
For so long, I've read and understood the following truths concerning web development:
HTML is for content
CSS is for presentation
JavaScript is for behavior.
This is normally all fine and good, ...
6
votes
2answers
2k views
Web Site Compliance with the Americans with Disabilities Act (ADA)
Are there any automatic, online or off, tools for testing xhtml/css for compliance with screen readers and other visual guidelines of the Americans with Disabilities Act (ADA)?
5
votes
3answers
74 views
Defined behaviour for expressions
The C99 Standard says in $6.5.2.
Between the previous and next sequence point an object shall have its stored value
modified at most once by the evaluation of an expression. Furthermore, the ...
5
votes
4answers
110 views
Confusing language in specification of strtol, et al
The specification for strtol conceptually divides the input string into "initial whitespace", a "subject sequence", and a "final string", and defines the "subject sequence" as:
the longest initial ...
5
votes
6answers
220 views
Example of Visual C++ nonconformant code?
What are some examples of code that are not standards compliant when using visual C++? Something that is allowed to compile under visual C++ but nothing else.
5
votes
4answers
237 views
Are tokens after #endif legal?
I currently do the following and the compiler (MSVC2008 / as well as 2010) doesn't complain about it but I'm not sure if it's a bad idea or not:
#ifndef FOO_H_
#define FOO_H_
// note, FOO_H_ is not ...
5
votes
3answers
3k views
Java reflection: Is the order of class fields and methods standardized?
Using reflection on Java classes to access all field, methods, and so on:
Is there a standardized order of these elements (which is specified in some standard)?
Of course, I could check it ...
5
votes
4answers
2k views
How Do I Serialize DateTime Objects in .NET in a Standards Compliant Way
My goal is use the .NET DateTime object (in C#) and have that be serialized to and parsed from a string (for use in XML) in a way that is standards compliant. The specific standard I have in mind is ...
4
votes
4answers
96 views
How to make g++ refuse any code that exhibits undefined behaviour?
I would like to add a CXXFLAG to my build systems that force the entire code-base to be well-defined. So every piece of code that exhibits undefined behaviour in a static fashion, should be refused by ...
4
votes
2answers
130 views
Are uninitialized pointers in objects with static storage duration initialized to NULL, or to all-zeros?
out of curiousity and because I don't have my copy of the standard at hand right now:
Given an implementation where null pointers are not represented by an all-zeros pattern, will uninitialized ...
4
votes
1answer
272 views
Why is destructor of boost::thread detaching joinable thread instead of calling terminate() as standard suggests?
According to the draft C++0x standard, this code:
void simplethread()
{
boost::thread t(someLongRunningFunction);
// Commented out detach - terminate() expected.
// t.detach();
}
... ...
4
votes
1answer
1k views
Standards mode in IE7 with HTML5?
Is there a way to trigger standards mode in IE7 when using the HTML5 doctype?
My document starts like this:
<!DOCTYPE html>
<html>
<head>
...
4
votes
4answers
353 views
should template template parameters be allowed to receive parameters resolved from previous parameters?
I've found a weird issue on g++ 4.4 and 4.5. I've asked about this because i thought that i was making some silly error in the code. The original post is here but for post completitude i'll repost the ...
4
votes
7answers
260 views
How important is standards-compliance?
Ok, this is a philosophical question, and I would like to hear different opinions. If it is not a secret or trouble, please provide your age, C++ knowledge (scale 0-100, your own opinion), and the ...
4
votes
4answers
557 views
Why does C++ allow variable length arrays that aren't dynamically allocated?
I'm relatively new to C++, and from the beginning it's been drilled into me that you can't do something like
int x;
cin >> x;
int array[x];
Instead, you must use dynamic memory. However, I ...
4
votes
4answers
655 views
Does (size_t)((char *)0) ever not evaluate to 0?
According to the responses in "Why subtract null pointer in offsetof()?" (and my reading of K&R), the C standard doesn't require that (size_t)((char *)0) == 0. Still, I've never seen a situation ...
4
votes
3answers
349 views
delete[] supplied a modified new-ed pointer. Undefined Behaviour?
I saw some code as below during a peer-code-review session:
char *s = new char[3];
*s++ = 'a';
*s++ = 'b';
*s++='\0';
delete []s; // this may or may not crash on some or any day !!
...
4
votes
2answers
363 views
Is it legal to create your own CSS attributes?
I'm working on a windowing application for a website of mine. Right now, I have each individual window set up as a in the body of the site. I add new windows by literally adding the appropriate code ...
4
votes
9answers
274 views
Is there a way to reference values as “variables” in CSS?
I am trying to write the HTML and CSS for an internal webapp properly. As much as technically possible, I want the HTML markup to define the content of the page and be completely independent of what ...
4
votes
9answers
1k views
Why is software support for Bidirectional text (Hebrew,Arabic) so poor?
While most operating systems and web browsers have very good support for bidirectional text such as Hebrew and Arabic, most commercial and open-source software does not:
Most text editors, besides ...