Tagged Questions
Microsoft Visual C++ is a C and C++ compiler for Windows. The most recent version of the compiler is Visual C++ 2010, which is available in both commercial editions and in a free Express Edition. The compiler supports the following languages: C: Only the C90 standard is supported; there is very limited C99 support C++: Also includes support for several major C++11 features as of Visual Studio 2010 C++/CLI and .NET Managed Extensions for C++
396
votes
34answers
107k views
Why is this program erroneously rejected by three C++ compilers? [closed]
I am having some difficulty compiling a C++ program that I've written.
This program is very simple and, to the best of my knowledge, conforms to all the rules set forth in the C++ Standard. I've ...
61
votes
5answers
1k views
How is “int* ptr = int()” value initialization not illegal?
The following code (taken from here):
int* ptr = int();
compiles in Visual C++ and value-initializes the pointer.
How is that possible? I mean int() yields an object of type int and I can't assign ...
50
votes
11answers
2k views
How bad is “if (!this)” in a C++ member function?
If I come across old code that does if (!this) return; in an app, how severe a risk is this? Is it a dangerous ticking time bomb that requires an immediate app-wide search and destroy effort, or is it ...
44
votes
10answers
24k views
Visual Studio support for new C / C++ standards?
I keep reading about C99 and C++11 and all these totally sweet things that are getting added to the language standard that might be nice to use someday. However, we currently languish in the land of ...
33
votes
11answers
5k views
Useful Add-Ins or Plug-Ins for native Visual Studio developer
There are plenty of different Add-Ins for Visual Studio see Visual Studio Gallery
. Please share your experiences and favorites.
As motivation, here are some of my favorites:
Versioning Controlled ...
32
votes
4answers
8k views
Automatically stop Visual C++ 2008 build at first compile error?
I know I can compile individual source files, but sometimes -- say, when editing a header file used by many .cpp files -- multiple source files need to be recompiled. That's what Build is for.
...
27
votes
3answers
15k views
Visual Studio Express 2010 license
Can I use Visual C++ 2010 Express compiler for commercial use?
As far as I know, it was always permitted prior to 2010 version, but now when I start IDE, it writes "For Evaluation Purposes Only". I ...
26
votes
5answers
625 views
Why does C++ linking use virtually no CPU? (updated)
On a native C++ project, linking right now can take a minute or two, yet during this time CPU drops from 100% during compilation to virtually zero. Does this mean linking is primarily a disk activity?
...
25
votes
4answers
589 views
Does std::vector::swap invalidate iterators?
If I swap two vectors, will their iterators remain valid, now just pointing to the "other" container, or will the iterator be invalidated?
That is, given:
using namespace std;
vector<int> ...
25
votes
2answers
13k views
In Visual Studio C++, what are the memory allocation representations?
In Visual Studio, we've all had "baadf00d", have seen seen "CC" and "CD" when inspecting variables in the debugger in C++ during run-time.
From what I understand, "CC" is in DEBUG mode only to ...
24
votes
9answers
1k views
What does the operation c=a+++b mean? [closed]
Possible Duplicate:
How is the expression x---y parsed? Is it a legal expression?
The following code has me confused
int a=2,b=5,c;
c=a+++b;
printf("%d,%d,%d",a,b,c);
I expected the ...
23
votes
17answers
5k views
Is !! a safe way to convert to bool in C++?
[This question is related to but not the same as this one.]
If I try to use values of certain types as boolean expressions, I get a warning. Rather than suppress the warning, I sometimes use the ...
22
votes
5answers
556 views
At what moment is memory typically allocated for local variables in C++?
I'm debugging a rather weird stack overflow supposedly caused by allocating too large variables on stack and I'd like to clarify the following.
Suppose I have the following function:
void function()
...
21
votes
3answers
396 views
wrong function being picked
I was trying to clean up some code that uses char* with std::string and ran into a problem that is illustrated by the following code.
void Foo( int xIn , const std::string & fooIn )
{
...
21
votes
3answers
456 views
Was the Visual C++ STL human-generated or code-generated?
I freak out whenever I open up any STL-related code from Visual Studio's implementation while debugging my code:
// From <xtree>
if (_Where == begin())
{ // insert at beginning if before ...
21
votes
2answers
2k views
Usefulness of signaling NaN?
I've recently read up quite a bit on IEEE 754 and the x87 architecture. I was thinking of using NaN as a "missing value" in some numeric calculation code I'm working on, and I was hoping that using ...
21
votes
5answers
19k views
Visual C++: How to disable specific linker warnings?
I'm using a library from CGAL which during the linking stage of my code compilation produces a lot of linking warnings of this form:
warning LNK4099: PDB 'vc80.pdb' was not found with ...
20
votes
3answers
368 views
Why is it ambiguous to call overloarded ambig(long) and ambig(unsigned long) with an integer literal?
When compiling
void ambig( signed long) { }
void ambig(unsigned long) { }
int main(void) { ambig(-1); return 0; }
I get
error C2668: 'ambig' : ambiguous call to overloaded function
could be ...
20
votes
7answers
23k views
How to keep the console window open in visual c++?
I'm starting out in visual c++ and I'd like to know how to keep the console window.
For instance this would be a typical hello world application:
int _tmain(int argc, _TCHAR* argv[])
{
cout ...
20
votes
11answers
7k views
How do YOU reduce compile time, and linking time for Visual C++ projects? (native c++)
How do YOU reduce compile time, and linking time for VC++ projects? (native C++)
Please specify if each suggestion applies to debug, release, or both.
19
votes
1answer
161 views
Is it safe to bind a reference to a not yet constructed object in C++?
Consider this code sample:
class Base {
public:
Base( string& _object ) : object( _object ) {}
private:
string& object;
};
class Derived: public Base {
public:
Derived() : Base( ...
19
votes
5answers
720 views
Will C++ exceptions safely propagate through C code?
I have a C++ application that calls SQLite's (SQLite is in C) sqlite3_exec() which in turn can call my callback function implemented in C++. SQLite is compiled into a static library.
If an exception ...
19
votes
5answers
3k views
Which version of MSXML should I use?
Seems like this would be a common question, though I could not find it on SO.
Which version of MSXML should I use in my applications, and more importantly, how should I decide?
There is MSXML3, 4, ...
19
votes
3answers
11k views
GCC with Visual Studio?
How hard would it be to use GCC instead of VC++ from within Visual Studio 2008? Obviously, some of the keywords won't match, and some may not get syntax highlighting (unless you made a new language ...
19
votes
11answers
2k views
What is the performance implication of converting to bool in C++?
[This question is related to but not the same as this one.]
My compiler warns about implicitly converting or casting certain types to bool whereas explicit conversions do not produce a warning:
long ...
18
votes
8answers
464 views
Most accurate way to do a combined multiply-and-divide operation in 64-bit?
What is the most accurate way I can do a multiply-and-divide operation for 64-bit integers that works in both 32-bit and 64-bit programs (in Visual C++)? (In case of overflow, I need the result mod ...
18
votes
5answers
3k views
Why destructor is not called on exception?
I expected A::~A() to be called in this program, but it isn't:
#include <iostream>
struct A {
~A() { std::cout << "~A()" << std::endl; }
};
void f() {
A a;
throw "spam";
}
...
17
votes
4answers
651 views
size_t vs int warning
I am getting following warning always for following type of code.
std::vector v;
for ( int i = 0; i < v.size(); i++) {
}
warning C4267: 'initializing' : conversion from 'size_t' to 'int', ...
17
votes
4answers
772 views
Visual Studio 2010, Intellisense and PCH: what are the alternatives to ugly stdafx.h?
I recently switched to Visual Studio 2010 and for Intellisense not to take half a minute to show up when using boost libraries, Microsoft's suggestion seems to use precompiled headers.
Except that I ...
17
votes
3answers
378 views
How to debug unaligned accesses on amd64 using Visual Studio?
I would like to debug and profile some 64-bit software performing unaligned accesses, like in the following example:
int foo[2] = { 1, 2 };
*((int *)((char *)foo + 2)) = 3;
The gcc way
I know of ...
17
votes
14answers
9k views
How to create a UTF-8 string literal in Visual C++ 2008
In VC++ 2003, I could just save the source file as UTF-8 and all strings were used as is. In other words, the following code would print the strings as is to the console. If the source file was saved ...
17
votes
5answers
1k views
How can adding code to a loop make it faster?
I have a simple function with an inner loop - it scales the input value, looks up an output value in a lookup table, and copies it to the destination. (ftol_ambient is a trick I copied from the web ...
17
votes
4answers
2k views
What to put in precompiled header? (MSVC)
What are the best candidates for a precompiled header file? Can I put STL and Boost headers there, even though they have templates? And will that reduce compile times?
Also, what are the best IDE ...
16
votes
2answers
305 views
Have a static lib, is there a simple way to know it is for 32 bit or 64 bit?
Is there any tool that can directly test if a library is made for 32 or 64 bit?
16
votes
3answers
267 views
Why does std::exception have extra constructors in VC++?
Something I noticed just now. Definition of exception in the standard (18.6.1):
class exception {
public :
exception() throw();
exception(const exception &) throw();
exception& ...
16
votes
13answers
3k views
How to improve Visual C++ compilation times?
I am compiling 2 C++ projects in a buildbot, on each commit. Both are around 1000 files, one is 100 kloc, the other 170 kloc. Compilation times are very different from gcc (4.4) to Visual C++ (2008).
...
15
votes
2answers
299 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 ...
15
votes
4answers
1k views
Significance of Sleep(0)
I used to see Sleep(0) in some part of my code where some infinite/long while loops are available. I was informed that it would make the time-slice available for other waiting processes. Is this true? ...
15
votes
3answers
397 views
Can a member struct be zero-init from the constructor initializer list without calling memset?
Let's say I have the following structure declaration (simple struct with no constructor).
struct Foo
{
int x;
int y;
int z;
char szData[DATA_SIZE];
};
Now let's say this struct is a ...
15
votes
13answers
15k views
How to detect VC++ 2008 redistributable?
Is there a Registry setting that I can look for to determine whether or not the Visual C++ redistributable is installed, whether standalone or as part of Visual Studio 2008? I know that I could launch ...
14
votes
4answers
712 views
Good URLs for tracking implementation progress of C++0x in MSVC and GCC
Does anyone know good URLs/Sites/mailing lists to track the current implementation progress of C++0x features in MSVC and GCC?
BTW: Yes I know there is boost but because I'm also very interested in ...
14
votes
5answers
4k views
Getting started with audio programming
I'm looking to build some compression interfaces for windows audio, and I was wondering if anybody might know of some tips/tricks? I'd like to build my own software equalizer that will function with ...
14
votes
3answers
5k views
Will new return NULL in any case?
I know that according to C++ standard in case the new fails to allocate memory it is supposed to throw std::bad_alloc exception. But I have heard that some compilers such as VC6 (or CRT ...
14
votes
11answers
2k views
How do I get output to show up in the Messages pane of the Error List for Visual Studio 2005?
I have a header file like this:
#ifndef __GEN_NOTE_MARKERS_TO_DEVELOPERS_HPP__
#define __GEN_NOTE_MARKERS_TO_DEVELOPERS_HPP__
#ifdef _DEBUG
// macros for turning a number into a string
...
14
votes
5answers
11k views
13
votes
3answers
243 views
Is the C4345 warning of Visual Studio wrong?
The following code triggers C4345 on the marked line:
#include <array>
#include <iostream>
int main(){
static unsigned const buf_size = 5;
typedef std::array<char, ...
13
votes
3answers
217 views
What's this extra parameter passed into virtual destructor?
I have this code:
class Class {
public:
virtual ~Class() {}
};
int main()
{
Class* object = new Class();
delete object;
}
which I compile with Visual C++ 10 and get this disassembly ...
13
votes
3answers
272 views
What exactly is “broken” with Microsoft Visual C++'s two-phase template instantiation?
Reading questions, comments and answers on SO, I hear all the time that MSVC doesn't implement two-phase template lookup / instantiation correctly.
From what I understand so far, MSVC++ is only doing ...
13
votes
7answers
741 views
optimization of access to members in c++
I'm running into an inconsistent optimization behavior with different compilers for the following code:
class tester
{
public:
tester(int* arr_, int sz_)
: arr(arr_), sz(sz_)
{}
...
13
votes
4answers
629 views