0
votes
5answers
25 views
TCHAR[], LPWSTR, LPTSTR and GetWindow Text function
So the GetWindowText is declared on MSDN as follows:
int GetWindowText(
HWND hWnd,
LPTSTR lpString,
int nMaxCount
);
However for the code to work we have to declare the second …
3
votes
2answers
51 views
C++, Seg Faults, and Memory Management
I'm moving from Java to C++ and have really enjoyed it. One thing I don't enjoy is not understanding memory at all because Java used to do that for me.
I've purchased a book : Memory as a …
1
vote
3answers
55 views
Input asked for better programming practices
As I'm learning C++ I started implementing some common datastructures as a form of practice.
The first one being a Stack (this was the first to spring in mind).
I've done some programming and it's …
1
vote
2answers
40 views
throwing an exception causes segmentation fault
Collection CollectionFactory::createFromMap(const std::string& name,
const DataMap& dm) const
{
if (!Collection::isNameValid(name))
{
const std::string error = "invalid …
0
votes
7answers
104 views
Storing and printing 10+ digit integer in c++
I'm using cout to print digits to the console. I am also storing values of up to 13+billion as a digit and doing computations on it. What data type should I use?
When I do the following:
int a = …
0
votes
1answer
21 views
Socket programming Xp > Vista, Vista > XP
I am developing a program which sends images from one computer to another (similar to remote assistance without mouse/keyboard input). The two computers I use to test this are one Windows XP machine …
2
votes
9answers
83 views
Does a type require a default constructor in order to declare an array of it?
I noticed that when you declare an array, the default constructor must be needed. Is that right?
Is there any exception?
For example,
struct Foo{
Foo(int i ) {}
};
int main () {
Foo f[5];
…
4
votes
5answers
132 views
C++ exception through C code
I have some C++ code that is calling into a C library. The C library provides me a mechanism to have a function called when an error occurs to clean things up and hopefully do something useful. I …
2
votes
6answers
73 views
Where/how to define a template
What is the best pratice in regards to defining a template in C++?
template <class T>
class A
{
private:
// stuff
public:
T DoMagic()
{
//method body
}
}
Or:
template …
0
votes
3answers
88 views
Function has corrupt return value
I have a situation in Visual C++ 2008 that I have not seen before. I have a class with 4 STL objects (list and vector to be precise) and integers.
It has a method:
inline int id() { return m_id; }
…
3
votes
4answers
63 views
in C++ files: what a file opened as an ios::binary differs from one opened as ios::binary | ios::out ?
if i opened a file like:
ofstream file("file.dat",ios::binary);
or
ofstream file("file.dat",ios::binary | ios::out);
what can i do with a file opened in the latter form that i can't do with the …
0
votes
0answers
11 views
Getting volume change notifications on Vista/7 (C++)
I'm trying to get notifications whenever the master volume changes on Windows Vista/7. This is the code I'm using:
#include <audiopolicy.h>
#include <audioclient.h>
#include …
7
votes
4answers
99 views
Using virtual function in child after casting operation in C++
I have the following code:
class A
{
};
class B : public A
{
public:
virtual void f() {}
};
int main()
{
A* a = new A();
B* b = static_cast<B*>(a);
b->f();
}
This …
2
votes
1answer
42 views
What is the best way to split up utility functions in a library to maximize reusability?
I have a recurring problem with a statically linked library I've written (or in some cases, code was accumulated from open sources).
This library, MFC Toolbox Library by name, has a lot of free …
0
votes
0answers
35 views
Why and when should one call _fpreset( )?
The only documentation I can find (on MSDN or otherwise) is that a call to _fpreset() "resets the floating-point package." What is the "floating point package?" Does this also clear the FPU status …
