active questions tagged c++ - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T14:00:11Zhttp://stackoverflow.com/feeds/tag/c++http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810372/c-serialization-library-that-supports-partial-serialization0C++ serialization library that supports partial serialization?Joseph Garvin2009-11-27T19:38:22Z2009-11-28T13:55:43Z
<p>Are there any good existing C++ serialization libraries that support partial serialization? By partial serialization I mean that I might want to say, save the values of 3 specific members, and later be able to apply that saved copy to a different instance, only updating those 3 members and leaving the others intact. This would be useful for example for sending data over the network -- I have some object on a client and a server, and when a member changes on the server I want to send a message to the client containing the updated value for that member and that member only, I don't want to send a copy of the whole object over the wire. boost::serialization at a glance looks like it only supports all or nothing.</p>
http://stackoverflow.com/questions/1812152/c-stdlib-hs-on-c-and-malloc-realloc0C stdlib .h's on C++ and malloc/reallocconejoroy2009-11-28T10:06:22Z2009-11-28T13:54:00Z
<p>I was really bothered by the inclusion of <strong>C stdlib</strong> functions on the <strong>global namespace</strong> and ended up writing things like ::snprintf or ::errno or struct ::stat, etc, to differentiate from some of my own functions in the enclosing namespace where those c stdlib functions were used.</p>
<p>Then I discovered that there is a way to declare every C stdlib function in the std namespace (as STL): just include < c(lib) > instead of < (lib).h > so I've edited my code the use those new "c for c++" includes.</p>
<p>On <strong>Debian/GCC 4.3.4</strong> I had to 2 problems:</p>
<p><strong>1)</strong> #error This file requires compiler and library support for the upcoming \
ISO C++ standard, C++0x. This support is currently experimental, and must be \
enabled with the -std=c++0x or -std=gnu++0x compiler options.</p>
<p><strong>2)</strong> using -std=c++0x my program compiles just fine, but I have not modified ::snprintf or ::time, etc.. every C stdlib function is still on the global namespace =(! (no, I'm not <em>using namespace std</em> not even once)</p>
<p>Any thoughts?</p>
<p>For example.. how to stop the c stdlib from invading my global namespace? < c(lib) > is an experimental feature of the next C++ standard or could be used safely right now?</p>
<p>Then I've another doubt that perhaps deserves a new question.. there is no cmalloc. I know the whole history about new replacing malloc and why. but for simple plain byte buffers there is no c++ equivalent of <strong>realloc</strong>. I know that memory blocks and reallocation are implementation/so specific, but when there are contiguous free blocks of memory realloc works better than a new buffer allocation and memory copy.</p>
<p>Thanks =)!</p>
http://stackoverflow.com/questions/1812259/c-potential-issues-with-custom-coded-generic-container1C++ : Potential Issues with Custom Coded Generic Container?KK2009-11-28T11:05:59Z2009-11-28T13:29:21Z
<p>I am unable to use the STL and boost library and I have to write my own container in C++. The following code compiles without error in VC++6.</p>
<p>I have not actually tested the code but is concerned whether this generic container will work with both primitive and non primitive types (like class). Will there be any potential issues with the copy constructor and the assignment operator especially? </p>
<p>Any other suggestions and comments are most welcomed. :)</p>
<pre><code>template <class T>
class StdVector{
private:
int _pos;
int _size;
const T *_items;
public:
StdVector();
StdVector(const StdVector &v);
StdVector(int size);
virtual ~StdVector();
void Add(const T &item);
void SetSize(int size);
int GetSize();
const T * Begin();
const T * End();
const T * ConstIterator();
StdVector & operator=(const StdVector &v);
};
template <typename T>
StdVector<T>::StdVector()
: _pos(0), _size(0), _items(NULL){
}
template <typename T>
StdVector<T>::StdVector(const StdVector &v)
: _pos(0), _size(v.GetSize()), _items(new T[_size]){
std::copy(v.Begin(), v.End(), Begin());
}
template <typename T>
StdVector<T>::StdVector(int size)
: _pos(0), _size(size), _items(new T[_size]){
}
template <typename T>
StdVector<T>::~StdVector(){
if (_items != NULL)
delete[] _items;
}
template <typename T>
void StdVector<T>::Add(const T &item){
if (_pos == _size)
throw new exception("Already at max size!!!");
_items[_pos++] = item;
}
template <typename T>
void StdVector<T>::SetSize(int size){
if (_items != NULL)
delete[] _items;
_pos = 0;
_size = size;
_items = new T[_size];
}
template <typename T>
int StdVector<T>::GetSize(){
return _size;
}
template <typename T>
const T * StdVector<T>::Begin(){
return _items;
}
template <typename T>
const T * StdVector<T>::End(){
return _items + _pos;
}
template <typename T>
const T * StdVector<T>::ConstIterator(){
return _items;
}
template <typename T>
StdVector<T> & StdVector<T>::operator=(const StdVector &v){
if (this != &v){
delete[] _items;
std::copy(v.Begin(), v.End(), Begin());
}
return *this;
}
</code></pre>
http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c1User-mode synchronization library for C++CyberShadow2009-11-27T15:30:57Z2009-11-28T13:11:46Z
<p>Does anyone know of a Windows user-mode thread synchronization library for C++ (utilizing spin locks / atomic operations)? I only need mutexes (~critical sections), but condition variables would be a plus.</p>
http://stackoverflow.com/questions/1810566/c-templated-friend-class0c++ templated friend classdanwoods2009-11-27T20:39:50Z2009-11-28T12:48:53Z
<p>Hello all,<br>
I'm trying to write an implementation of a 2-3-4 tree in c++. I'm it's been a while since I've used templates, and I'm getting some errors. Here's my extremely basic code framework:<br>
node.h:</p>
<pre><code> #ifndef TTFNODE_H
#define TTFNODE_H
template <class T>
class TreeNode
{
private:
TreeNode();
TreeNode(T item);
T data[3];
TreeNode<T>* child[4];
friend class TwoThreeFourTree<T>;
int nodeType;
};
#endif
</code></pre>
<p>node.cpp:</p>
<pre><code>#include "node.h"
using namespace std;
template <class T>
//default constructor
TreeNode<T>::TreeNode(){
}
template <class T>
//paramerter receving constructor
TreeNode<T>::TreeNode(T item){
data[0] = item;
nodeType = 2;
}
</code></pre>
<p>TwoThreeFourTree.h</p>
<pre><code>#include "node.h"
#ifndef TWO_H
#define TWO_H
enum result {same, leaf,lchild,lmchild,rmchild, rchild};
template <class T> class TwoThreeFourTree
{
public:
TwoThreeFourTree();
private:
TreeNode<T> * root;
};
#endif
</code></pre>
<p>TwoThreeFourTree.cpp:</p>
<pre><code>#include "TwoThreeFourTree.h"
#include <iostream>
#include <string>
using namespace std;
template <class T>
TwoThreeFourTree<T>::TwoThreeFourTree(){
root = NULL;
}
</code></pre>
<p>And main.cpp:</p>
<pre><code>#include "TwoThreeFourTree.h"
#include <string>
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream inFile;
string filename = "numbers.txt";
inFile.open (filename.c_str());
int curInt = 0;
TwoThreeFourTree <TreeNode> Tree;
while(!inFile.eof()){
inFile >> curInt;
cout << curInt << " " << endl;
}
inFile.close();
}
</code></pre>
<p>And when I try to compile from the command line with:
g++ main.cpp node.cpp TwoThreeFourTree.cpp</p>
<p>I get the following errors: </p>
<pre><code>In file included from TwoThreeFourTree.h:1,
from main.cpp:1:
node.h:12: error: ‘TwoThreeFourTree’ is not a template
main.cpp: In function ‘int main()’:
main.cpp:13: error: type/value mismatch at argument 1 in template parameter list for ‘template<class T> class TwoThreeFourTree’
main.cpp:13: error: expected a type, got ‘TreeNode’
main.cpp:13: error: invalid type in declaration before ‘;’ token
In file included from node.cpp:1:
node.h:12: error: ‘TwoThreeFourTree’ is not a template
In file included from TwoThreeFourTree.h:1,
from TwoThreeFourTree.cpp:1:
node.h:12: error: ‘TwoThreeFourTree’ is not a template
</code></pre>
<p>My main question is why it's saying "error: ‘TwoThreeFourTree’ is not a template". Does anyone have any ideas? Thanks for all advice/help in advance...
Dan</p>
http://stackoverflow.com/questions/1812016/visual-studio-2008-template-containing-both-a-c-and-a-c-cli-project1Visual Studio 2008 template containing both a C# and a C++/CLI project?Daniel152009-11-28T08:50:27Z2009-11-28T12:31:59Z
<p>Hello everyone,<br>
I'm currently writing a Winamp plugin framework for C# (basically, a C# implementation of the Winamp API/SDK, as well as a barebones plugin template). Because C# libraries can't export DLL entry points, I'm using a C++/CLI wrapper which basically just loads the C# library. I'd like to create a Visual Studio template for this, which creates <strong>both</strong> the barebones C# plugin library, <strong>and</strong> the C++ wrapper. However, if I click File → Export Template, only the C# project is listed. </p>
<p>Is it possible to create a multi-project template containing both a C# project and a C++/CLI project? If so, how?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1809705/global-placement-delete2Global "placement" delete[]Gwaredd2009-11-27T16:41:11Z2009-11-28T12:27:05Z
<p>I am trying to replace new/delete with my own allocator(s). So, overriding placement new and delete - quite happy with that. Looks something like this ...</p>
<pre><code>void* operator new( size_t size, Allocator* a )
{
return a->Alloc( size );
}
template<class T> inline void MyDelete( T* p, Allocator* a )
{
if( p )
{
p->~T();
a->Free( p );
}
}
</code></pre>
<p>The C++ language specifies that, for placement delete, you have to explicitly call the ~dtor. The compiler doesn't do it for you. Whether this is a templatised operator delete or explicit function as shown.</p>
<p>See <a href="http://www2.research.att.com/~bs/bs%5Ffaq2.html#placement-delete" rel="nofollow">http://www2.research.att.com/~bs/bs_faq2.html#placement-delete</a></p>
<p>The problem is - how can I get this to work for array delete[]? I know I need to iterate through the array and call ~dtor myself. Therefore I need the size of the array, </p>
<p><em>Edited for clarity</em></p>
<p>I can store this information or infer it from the block size. However, the problem is the compiler (MSVC v9) does different things if I am allocating an array of objects with destructors compared to ones without, i.e. if there is a dtor it will allocate an extra 4 bytes. This is because the compiler for standard delete[] needs to do the same thing and can pair up the appropriate code for delete[]. </p>
<p>However in my own "placement" delete[] I have no way of knowing what the compiler did or determining safely at compile time if the class has a dtor. </p>
<p>E.g.</p>
<pre><code>char buf[ 1000 ];
MyClass* pA = new( buf ) MyClass[ 5 ];
</code></pre>
<p>Here the value of pA is buf + 4 if there exists ~MyClass() and the amount of memory allocated is sizeof(MyClass) * 5 + 4. However if there is no dtor then pA == buf and the amount of memory allocated is sizeof(MyClass) * 5.</p>
<p>So my question is - is this behaviour a language standard and consistent across compilers or is it a peculiar to MSVC? Has anyone else got a good solution to this problem? I guess the only option is to not use new[] and do the construction myself which is fine but then the calling code syntax is a little unusual .. or force every class to have a destructor.</p>
http://stackoverflow.com/questions/1812395/designing-a-virtual-machine-with-jit0Designing a virtual machine with JITJack2009-11-28T12:17:21Z2009-11-28T12:20:10Z
<p>Hello,
I'm developing a scripting language that compiles for its own virtual machine, a simple one that has instructions to work with some kind of data like <em>points</em>, <em>vectors</em>, <em>floats</em> and so on.. the memory cell is represented in this way:</p>
<pre><code>struct memory_cell
{
u32 id;
u8 type;
union
{
u8 b; /* boolean */
double f; /* float */
struct { double x, y, z; } v; /* vector */
struct { double r, g, b; } c; /* color */
struct { double r, g, b; } cw; /* color weight */
struct { double x, y, z; } p; /* point variable */
struct { u16 length; memory_cell **cells; } l; /* list variable */
};
};
</code></pre>
<p>Instructions are generic and able to work on many different operands. For example</p>
<pre><code>ADD dest, src1, src2
</code></pre>
<p>can work with floats, vectors, points, colors setting the right type of destination according to operands.</p>
<p>The main execution cycle just check the <strong>opcode</strong> of the instruction (which is a struct containing unions to define any kind of instruction) and executes it. I used a simplified approach in which I don't have registers but just a big array of memory cells.</p>
<p>I was wondering if JIT could help me in getting best performances or not and how to achieve it.</p>
<p>As I said the best implementation reached so far is something like that:</p>
<pre><code> void VirtualMachine::executeInstruction(instr i)
{
u8 opcode = (i.opcode[0] & (u8)0xFC) >> 2;
if (opcode >= 1 && opcode <= 17) /* RTL instruction */
{
memory_cell *dest;
memory_cell *src1;
memory_cell *src2;
/* fetching destination */
switch (i.opcode[0] & 0x03)
{
/* skip fetching for optimization */
case 0: { break; }
case MEM_CELL: { dest = memory[stack_pointer+i.rtl.dest.cell]; break; }
case ARRAY_VAL: { dest = memory[stack_pointer+i.rtl.dest.cell]->l.cells[i.rtl.dest.index]; break; }
case ARRAY_CELL: { dest = memory[stack_pointer+i.rtl.dest.cell]->l.cells[(int)i.rtl.dest.value]; break; }
}
/* omitted code */
switch (opcode)
{
case ADD:
{
if (src1->type == M_VECTOR && src2->type == M_VECTOR)
{
dest->type = M_VECTOR;
dest->v.x = src1->v.x + src2->v.x;
dest->v.y = src1->v.y + src2->v.y;
dest->v.z = src1->v.z + src2->v.z;
}
/* omitted code */
</code></pre>
<p>Is it easy/convenient to try jit compilation? But I really don't know where to start from, that's why I'm asking some advices.</p>
<p>Apart from that, are there any other advices I should consider in developing it?</p>
<p>This virtual machine should be enough fast to do calculate shaders for a ray tracer but I sill haven't done any kind of benchmark.</p>
http://stackoverflow.com/questions/1810753/overloading-operator-for-a-templated-class2Overloading operator<< for a templated classpeterJk2009-11-27T21:57:32Z2009-11-28T12:01:31Z
<p>Hello! I'm trying to implement a method for a binary tree which returns a stream. I want to use the stream returned in a method to show the tree in the screen or to save the tree in a file:</p>
<p>These two methods are in the class of the binary tree:</p>
<p>Declarations:</p>
<pre><code>void streamIND(ostream&,const BinaryTree<T>*);
friend ostream& operator<<(ostream&,const BinaryTree<T>&);
template <class T>
ostream& operator<<(ostream& os,const BinaryTree<T>& tree) {
streamIND(os,tree.root);
return os;
}
template <class T>
void streamIND(ostream& os,Node<T> *nb) {
if (!nb) return;
if (nb->getLeft()) streamIND(nb->getLeft());
os << nb->getValue() << " ";
if (nb->getRight()) streamIND(nb->getRight());
}
</code></pre>
<p>This method is in UsingTree class:</p>
<pre><code>void UsingTree::saveToFile(char* file = "table") {
ofstream f;
f.open(file,ios::out);
f << tree;
f.close();
}
</code></pre>
<p>So I overloaded the operator "<<" of the BinaryTree class to use: cout << tree and ofstream f << tree, but I receive the next error message: undefined reference to `operator<<(std::basic_ostream >&, BinaryTree&)'</p>
<p>P.S. The tree stores Word objects (a string with an int).</p>
<p>I hope you understand my poor English. Thank you!
And I'd like to know a good text for beginners about STL which explains all necessary because i waste all my time in errors like this.</p>
<p>EDIT: tree in saveToFile() is declared: BinaryTree< Word > tree.</p>
http://stackoverflow.com/questions/1811516/integrating-erlang-with-c1Integrating Erlang with C++ajay2009-11-28T04:04:19Z2009-11-28T11:42:41Z
<p>What interfaces exist to tie Erlang with C++?</p>
http://stackoverflow.com/questions/1812295/capture-bitstream-into-string0Capture bitstream into stringhalluc1nati0n2009-11-28T11:24:46Z2009-11-28T11:37:48Z
<p>I'll need to capture my bitstream into a string and keep concatenating the string. However, I'm not really sure how it's to be done. Any ideas?</p>
<pre><code>#include <bitset>
#include <iostream>
#include <string>
using namespace std;
int main ()
{
int i;
char data[30];
int int_arr[30];
printf("\nEnter the Data Bits to be transmitted : ");
scanf("%s",data);
// convert it into bitstream
for (i=0; i<strlen(data); i++)
{
int_arr[i] = int(data[i]);
}
for (i=0; i<strlen(data); i++)
{
cout << int_arr[i]<<endl;
cout << std::bitset<8>( int_arr[i] )<<endl; // Placeholder
}
return 0;
}
</code></pre>
<p>In the line where it's marked '//Placeholder', I really do not need to 'cout' it, rather, I'd have to capture the bitstream into a string and keep concatenating it.</p>
http://stackoverflow.com/questions/1812308/how-to-create-a-magnet-link-client-for-ex-for-thepiratbay0How to create a magnet link client (for ex for ThePiratBay)Ole Jak2009-11-28T11:30:11Z2009-11-28T11:36:21Z
<p>How to create a magnet link downloader sharer using open source libs (C# if possible) ?</p>
<p>What do I need:</p>
<ul>
<li>Open Source Libs/wrappers.</li>
<li>Tutorials and blog articles on How to do it, about etc.</li>
</ul>
http://stackoverflow.com/questions/1738923/number-of-calls-for-nth-fibonacci-number0Number of calls for nth Fibonacci number.nthrgeek2009-11-15T21:33:07Z2009-11-28T11:35:16Z
<p>Consider the following code snippet:</p>
<pre><code>int fib(int N)
{
if(N<2) return 1;
return (fib(N-1) + fib(N-2));
}
</code></pre>
<p>Given that <code>fib</code> is called from main with N as 10,35,67,... (say), how many total calls
are made to <code>fib</code>?</p>
<p>Is there any relation for this problem?</p>
<p>PS: This is a theoretical question and not supposed to be executed.</p>
<p>EDIT: </p>
<p>I am aware of other methods for the faster computation of Fibonacci series.</p>
<p>I want a solution for computing number of times fib is invoked for fib(40),fib(50) ,.. without the aid of compiler and in exam condition where you are supposed to answer 40 question similar to this one in a stipulated of time ( about 30 mints).</p>
<p>Thanks, </p>
http://stackoverflow.com/questions/1809381/break-on-nans-or-infs0Break on NaNs or infsstatic_rtti2009-11-27T15:35:22Z2009-11-28T11:35:14Z
<p>Hello all,</p>
<p>It is often hard to find the origin of a NaN, since it can happen at any step of a computation and propagate itself.
So is it possible to make a C++ program halt when a computation returns NaN or inf? The best in my opinion would be to have a crash with a nice error message:</p>
<pre><code>Foo: NaN encoutered at Foo.c:624
</code></pre>
<p>Is something like this possible? Do you have a better solution? How do you debug NaN problems?</p>
<p>EDIT: Precisions: I'm working with GCC under Linux.</p>
http://stackoverflow.com/questions/1811447/populating-int-array-that-is-a-member-variable0populating int array that is a member variableJamesz2009-11-28T03:30:08Z2009-11-28T11:32:40Z
<p>Hi,</p>
<p>I'm using C++ to create a tile map for a game. My problem is, I want to populate a multidimensional array of ints in the Map constructor, but it's not working properly. Here's my code in "Map.h" (irrelevant code has been removed).</p>
<pre><code>class Map {
private:
int mapArray[15][20];
};
</code></pre>
<p>And my code from Map.cpp</p>
<pre><code>Map::Map()
{
mapArray = {
{ 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 },
{ 20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 },
{ 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59 },
{ 60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79 },
{ 80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99 },
{ 100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119 },
{ 120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139 },
{ 140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159 },
{ 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179 },
{ 180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199 },
{ 200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 },
{ 220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239 },
{ 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259 },
{ 260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279 },
{ 280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299 }
};
}
</code></pre>
<p>PS. creating the mapArray locally, within a member function using int mapArray[15][20] and populating it then is working fine, I just can't seem to get it to populate in the constructor, with a member variable.</p>
<p>PPS. Very rusty with C++, please be gentle.</p>
<p>What am I doing wrong? </p>
<p>Thanks,
James.</p>
http://stackoverflow.com/questions/286402/initializing-struct-using-an-array2Initializing struct, using an arraygagneet2008-11-13T07:02:28Z2009-11-28T11:28:04Z
<p>I have a couple of array's:</p>
<pre><code>const string a_strs[] = {"cr=1", "ag=2", "gnd=U", "prl=12", "av=123", "sz=345", "rc=6", "pc=12345"};
const string b_strs[] = {"cr=2", "sz=345", "ag=10", "gnd=M", "prl=11", "rc=6", "cp=34", "cv=54", "av=654", "ct=77", "pc=12345"};
</code></pre>
<p>which i then need to parse out for '=' and then put the values in the struct. (the rc key maps to the fc key in the struct), which is in the form of:</p>
<pre><code>struct predict_cache_key {
pck() :
av_id(0),
sz_id(0),
cr_id(0),
cp_id(0),
cv_id(0),
ct_id(0),
fc(0),
gnd(0),
ag(0),
pc(0),
prl_id(0)
{ }
int av_id;
int sz_id;
int cr_id;
int cp_id;
int cv_id;
int ct_id;
int fc;
char gnd;
int ag;
int pc;
long prl_id;
};
</code></pre>
<p>The problem I am encountering is that the array's are not in sequence or in the same sequence as the struct fields. So, I need to check each and then come up with a scheme to put the same into the struct.</p>
<p>Any help in using C or C++ to solve the above?</p>
http://stackoverflow.com/questions/1808471/is-const-lpvoid-equivalent-to-void-const4Is "const LPVOID" equivalent to "void * const"?EFraim2009-11-27T12:24:08Z2009-11-28T10:32:36Z
<p>And if so, why some Win32 headers use it?</p>
<p>For instance: </p>
<pre><code>BOOL APIENTRY VerQueryValueA( const LPVOID pBlock,
LPSTR lpSubBlock,
LPVOID * lplpBuffer,
PUINT puLen
);
</code></pre>
<p>A bit more elaboration: If the API never uses references (or any other C++-only constructs) but only pointers and values, what is the point of having <code>const LPVOID</code> vs. <code>LPCVOID</code>.</p>
<p>Should I treat every place I see <code>const LPVOID</code> as some place where the real meaning is <code>LPCVOID</code>? (and thus it is safe to add a cast)</p>
<p>Further clarification: It appears that <code>const LPVOID pBlock</code> was indeed a mistake in this case. Windows 2008 SDK replaces it to <code>LPCVOID</code> in <code>VerQueryValue</code> signature. Wine did so quite some time ago.</p>
http://stackoverflow.com/questions/1812160/c-compile-error-for-template-assignment-operator-overloading1C++: Compile Error for Template Assignment Operator OverloadingKK2009-11-28T10:10:58Z2009-11-28T10:19:40Z
<p>I keep getting the error "use of class template requires template argument list" when I compile the following code in VC++6. What is wrong with it?</p>
<pre><code>template <class T>
class StdVector{
public:
StdVector & operator=(const StdVector &v);
};
template <typename T>
StdVector & StdVector<T>::operator=(const StdVector &v){
return *this;
}
</code></pre>
http://stackoverflow.com/questions/1798704/x86-and-x64-stack-frames1x86 and x64 stack framesScott J2009-11-25T17:44:57Z2009-11-28T09:28:44Z
<p>What is the difference when the compiler allocates variables on the stack in x86 v x64 architectures? Say I have a function </p>
<pre><code>foo(){
int i = 5;
i += 4;
}
</code></pre>
<p>how is this allocated on the stack differently in these two architectures?</p>
http://stackoverflow.com/questions/1811456/calling-a-function-from-a-string-with-the-functions-name-in-c1Calling a Function From a String With the Function’s Name in C++ticpete2009-11-28T03:34:20Z2009-11-28T09:09:53Z
<p>How can I call a C++ function from a string?</p>
<p>Instead of doing this, call the method straight from string:</p>
<pre><code>void callfunction(const char* callthis, int []params)
{
if (callthis == "callA"
{
callA();
}
else if (callthis == "callB")
{
callB(params[0], params[1]);
}
else if (callthis == "callC")
{
callC(params[0]);
}
}
</code></pre>
<p>In C# we'd use typeof() and then get the method info and call from there... anything we can use in C++? ~ Thanks!</p>
http://stackoverflow.com/questions/1811788/c-how-to-perform-deep-cloning-of-generic-type3C++: How to Perform Deep Cloning of Generic TypeKK2009-11-28T06:39:20Z2009-11-28T09:03:30Z
<p>To keep the long story short, I am unable to use the container from the STL and boost library and have to create my own. </p>
<p>My own generic container is coded in VC++6 and I need to know how to manually allocate memory for generic types before storing it in my own container. The generic types are all struct that can contain nested struct. All struct be it nested or not will contain only primitive types like char*, int, bool etc.</p>
<p>For example, when you call the insert function of std::vector, internally, std::vector will automatically perform a deep cloning of the generic type before storing it. </p>
<p><strong>How can I duplicate this functionality (deep cloning of generic type) in my own container?</strong></p>
<p>Please provide some sample code for performing deep cloning of generic type.</p>
http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant2Memorable 32-bit value as a constantBojan Milankovic2009-11-27T20:25:47Z2009-11-28T08:58:39Z
<p>I am looking for a memorable 32-bit value to be used as a constant. If possible, it should be somewhat funny too. </p>
<p>So far, I have come up with these two:</p>
<pre><code>0xcafebabe
0xdeaddad
</code></pre>
<p>Can you please suggest some other too?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1810657/c-iterating-through-a-vector-of-vectors0C++: Iterating through a vector of vectorsZepee2009-11-27T21:18:27Z2009-11-28T08:37:46Z
<p>Hey there! I'm doing this project and right now I'm trying to:</p>
<ol>
<li>create some of objects and store them in vectors, which get stored in another vector V</li>
<li>iterate through the vectors inside V</li>
<li>iterate through the objects inside the individual vectors</li>
</ol>
<p>Anyway, I was just searching the web and I came accross the stl for_each function. It seems pretty neat but I'm having problems with it. I'm trying to use it in this way:</p>
<pre><code>for_each(V.begin(), V.end(), iterateThroughSmallVectors);
</code></pre>
<p>the iterateThroug.... simply does the same on the vector passed to it..</p>
<p>Now I'm getting a weird "Vector iterators incompatible" runtime error. I've looked on it and can't find any useful input on this..</p>
<p>I don't know if it helps, but V is a private vector<> stored in class A, which has an accessor to it, and I'm trying to iterate through it in class B by doing:</p>
<pre><code>A->getV().begin(), A->getV().end(), etc..
</code></pre>
<p>Anyone got any idea of what is going on?</p>
<p>EDIT: Ok, so I think it is better to just post the code, and where problems might be arrising...</p>
<p>getTiles in gameState.h:</p>
<pre><code>vector<vector<tile*>> getTiles();
</code></pre>
<p>for_each loops in main.cpp:</p>
<pre><code>for_each(currState->getTiles().begin(),currState->getTiles().end(), drawTiles);
.
.
void drawTiles(vector<tile*> row)
{
for_each(row.begin(), row.end(), dTile);
}
void dTile(tile *t)
{
t->draw();
}
</code></pre>
<p>creating the vectors:</p>
<pre><code>int tp = -1;
int bCounter = 0;
int wCounter = 0;
for (int i = 0; i < 8; i++)
{
vector<tile*> row(8);
for (int j = 0; j < 8; j++)
{
tile *t = new tile(tp, (i+(SIDELENGTH/2))*SIDELENGTH,
(j+(SIDELENGTH/2))*SIDELENGTH);
row.push_back(t);
tp *= -1;
}
currState->setTiles(row);
tp *= -1;
}
</code></pre>
<p>and just in case it might be relevant:</p>
<pre><code>void gameState::setTiles(vector<tile*> val)
{
tiles.push_back(val);
}
</code></pre>
<p>Is it easier to spot the problem now? I hope so... And if you do spot any stupid stuff I might be doing, please let me know, I'm kind of new to C++ and the pointers and references still confuse me.</p>
<p>EDIT2: Thanks guys, that worked perfectly... well for that problem, now it seems I have an issue with the creation of the tiles and stroing them in the row vector.. it seems that even through the vector is created and passes correctly, the tiles that were supposed to be in it aren't (they are lost after the :</p>
<pre><code> for (int j = 0; j < 8; j++)
{
tile *t = new tile(tp, (i+(SIDELENGTH/2))*SIDELENGTH,
(j+(SIDELENGTH/2))*SIDELENGTH);
row.push_back(t);
tp *= -1;
}
</code></pre>
<p>loop. If any of you has any good ideas about solving this you're welcome to help me ;) In the mean time, I'll keep trying to fix it</p>
http://stackoverflow.com/questions/1811384/what-is-the-best-language-for-sockets-programming-1What is the best language for sockets programming?Hector Villalobos2009-11-28T02:47:35Z2009-11-28T08:21:26Z
<p>I'd like to develop software program that communicates between clients. What is the best programming language to do this?</p>
http://stackoverflow.com/questions/1769023/is-there-any-regular-expression-engine-which-do-just-in-time-compiling0Is there any regular expression engine which do Just-In-Time compiling?S.Mark2009-11-20T08:22:38Z2009-11-28T08:12:25Z
<p><strong>My Questions is</strong></p>
<p>Is there any regular expression engine which do Just-In-Time compiling during regex pattern parsing and use when matching/replacing the texts? or where can I learn JIT for i386 or x64 architecture?</p>
<p><strong>Why I need that is,</strong> </p>
<p>I recently <a href="http://www.soemin.net/2009/11/memo-regular-expressions-part-2.html" rel="nofollow">trying to benchmark python's built-in regex engine </a> with normal C codes with around 10M data.</p>
<p>I found that for normal replace (for example <strong>ab</strong> to <strong>zzz</strong>) is relatively fast like just 2 to 3 times different to C</p>
<p>but for <code>[a-z]c</code> tooks around 5 to 8 times slower than C, </p>
<p>and with grouping (for example - <code>([a-z])(c)</code> to <code>AA\2\1BB</code> ) its tooks 20 to 40 times slower than C.</p>
<p>Its not Just-In-Time compiling yet, but I think If I could do just In time compling, It could faster a lot more.</p>
<p>ps: I use profiling for each regex patterns during compling patterns,
for eg, profile 1 for simple one like <code>ab</code>, profile 2 for range <code>[a-z]c</code>, profile 3 with grouping <code>([a-z])(c)</code>, each profile has seperate codes, so no extra cost needed when matching, and replacing simple patterns.</p>
<p>Any Ideas would be appreciated, Thanks in advance.</p>
<p><strong>Update 1:</strong></p>
<p>I have tried with psyco, and Its doesnot improve the speed that much.
May be because I am doing text replacing against big data, not looping many times.
If I am not wrong, Python's re.sub running it in natively already I think, so pysco cannot improve the speed that much.</p>
<p><strong>Update 2:</strong></p>
<p>I have tried with boost regex wrapped into python, but its even slower than python's regex, so It seems like the bottleneck is in python's string processing and Jan Goyvaerts also pointing me that point in the answer.</p>
<p><strong>Update</strong></p>
<p>I like to convert regex pattern <code>ab[a-z]c</code> to machine codes, like following equivlent C codes.</p>
<p>*s points to 10M Long Texts</p>
<pre><code>do{
if(*s=='a' && s[1]=='b' && s[2]>='a' && s[2]<='z' && s[3]=='c') return 1;
}while(*s++);
return 0;
</code></pre>
<p>any ideas?</p>
http://stackoverflow.com/questions/1810498/c-gdb-shows-gibberish-values-for-class-members-despite-working-code0[C++] gdb shows gibberish values for class members, despite working codeexscape2009-11-27T20:15:53Z2009-11-28T07:51:17Z
<p>I ran in to a (in my eyes) very strange issue with gdb today, while trying to write a more C++-ish version of the <code>reverse()</code> method of my string class (all for learning, of course). Despite having a proper default constructor that initializes all member variables to 0, they start out as gibberish inside the member <code>reverse()</code> - <strong>according to gdb</strong> (everything except debugging actually works perfectly) - but not in a bare-bones program that just creates an empty string. Could this have something to do with the fact that <code>reverse()</code> is a member function that creates an instance of its own class? If not, why would it not happen in a bare-bones program?</p>
<p>BTW, before I mention any code: I compile thusly:</p>
<pre><code>g++ -c -o tests.o tests.cpp -Wall -Werror -DDEBUG=0 -O0 -ggdb3
g++ -c -o string.o string.cpp -Wall -Werror -DDEBUG=0 -O0 -ggdb3
g++ -o tests tests.o string.o -Wall -Werror -DDEBUG=0 -O0 -ggdb3
</code></pre>
<p>Code:</p>
<pre><code>string::string() : buf(NULL), _length(0), _size(0) {
init();
}
/* This is redundant in this case (right?), but the function is used elsewhere,
and I added the above initialization list while debugging this. */
void string::init() {
this->buf = NULL;
this->_length = 0;
this->_size = 0;
}
string string::reverse(void) const {
string rev;
rev.alloc(this->_length + 1);
for (size_t i=0; i<this->_length; i++) {
...
</code></pre>
<p>Here's what I get from running the above through gdb 7.0 (on Linux):<br>
(Sorry for the horizontal scroll, but it doesn't matter since you can see all you need anyhow.)</p>
<pre><code>Breakpoint 1, exscape::string::reverse (this=0x7fffffffd580) at string.cpp:368
368 string rev;
(gdb) next
378 rev.alloc(this->_length + 1); <<<< not yet executed when we print below!
(gdb) p rev
$1 = {buf = 0x7fffffffd560 "", _length = 140737488344448, _size = 140737488344128}
(gdb) n
380 for (size_t i=0; i<this->_length; i++) {
(gdb)
381 rev.buf[this->_length-i-1] = this->buf[i];
380 for (size_t i=0; i<this->_length; i++) {
(gdb) p rev
$2 = {buf = 0x7fffffffd560 "P\321`", _length = 140737488344448, _size = 140737488344128}
(gdb) n
381 rev.buf[this->_length-i-1] = this->buf[i];
(gdb)
380 for (size_t i=0; i<this->_length; i++) {
...
384 rev._length = this->_length;
(gdb)
386 }
(gdb) p rev
$3 = {buf = 0x7fffffffd560 "P\321`", _length = 140737488344448, _size = 140737488344128}
(gdb) next
main () at tests.cpp:72
(gdb) p r2 <<<< r2 is the name of the variable returned by reverse() of course
$4 = {buf = 0x60d150 "ABCDEF", _length = 6, _size = 7}
</code></pre>
<p>Why do the member variables appear to end up with gibberish values in gdb? (The gibberish values are always very close <code>this</code>, by the way! In this running, <code>this</code> == 0x7fffffffd580 == 140737488344448, the same value as <code>_length</code>). The function works perfectly, valgrind never complains, and all is well... until I try to rewrite the method and can't debug it properly, that is.</p>
<p>Any advice?</p>
<p>Update: A sample program that calls the function:</p>
<pre><code>#include <iostream>
#include "string.hpp"
int main() {
exscape::string s("Hello, world!");
exscape::string s2; // Use the default constructor
s2 = s.reverse();
std::cout << "Reversed: " << s2 << std::endl;
return 0;
}
(gdb) break exscape::string::reverse
Breakpoint 1 at 0x402ed6: file string.cpp, line 368.
(gdb) run
Starting program: /home/serenity/programming/cpp/string/a.out
Breakpoint 1, exscape::string::reverse (this=0x7fffffffdc80) at string.cpp:368
368 string rev;
(gdb) n
378 rev.alloc(this->_length + 1);
(gdb) p rev
$1 = {buf = 0x7fffffffdca0 "", _length = 140737488346240, _size = 140737488346208}
(gdb) finish
Run till exit from #0 exscape::string::reverse (this=0x7fffffffdc80) at string.cpp:378
0x000000000040163f in main () at bare.cpp:6
6 s2 = s.reverse();
Value returned is $2 = {buf = 0x607030 "!dlrow ,olleH", _length = 13, _size = 14}
(gdb) n
7 std::cout << "Reversed: " << s2 << std::endl;
(gdb) n
Reversed: !dlrow ,olleH
</code></pre>
<p>Update:</p>
<p>I copied the code to my Mac, and tried debugging it there - worked like a charm:</p>
<pre><code>Breakpoint 1, exscape::string::reverse (this=0x7fff5fbff800) at string.cpp:368
368 string rev;
(gdb) n
378 rev.alloc(this->_length + 1);
(gdb) p rev
$1 = (exscape::string &) @0x7fff5fbff7c0: {
buf = 0x0,
_length = 0,
_size = 0
}
</code></pre>
<p>That version of gdb is quite ancient, though - "GNU gdb 6.3.50-20050815 (Apple version gdb-1344)".<br>
I tried downgrading the Linux gdb to 6.8 and 6.6 to no avail. -- I actually tried 6.3 too, doesn't work either (and on a totally unrelated note, it appears the tab completion has gradually been getting better over the years :-).</p>
http://stackoverflow.com/questions/871354/bjarnes-new-book-anyone-done-the-exercises7Bjarne's new book - anyone done the exercises?20th Century Boy2009-05-16T00:28:55Z2009-11-28T07:26:35Z
<p>I'm doing the exercises in Stroustrup's new book <a href="http://www.stroustrup.com/Programming/" rel="nofollow">"Programming Principles and Practice Using C++"</a> and was wondering if anyone on SO has done them and is willing to share the knowledge? Specifically about the calculator that's developed in Chap 6 and 7. Eg the questions about adding the ! operator and sqrt(), pow() etc. I have done these but I don't know if the solution I have is the "good" way of doing things, and there are no published solutions on Bjarne's website. I'd like to know if I am going down the right track. Maybe we can make a wiki for the exercises?</p>
<p>Basically I have a token parser. It reads a char at a time from cin. It's meant to tokenise expressions like 5*3+1 and it works great for that. One of the exercises is to add a sqrt() function. So I modified the tokenising code to detect "sqrt(" and then return a Token object representing sqrt. In this case I use the char 's'. Is this how others would do it? What if I need to implement sin()? The case statement would get messy. </p>
<pre><code>char ch;
cin >> ch; // note that >> skips whitespace (space, newline, tab, etc.)
switch (ch) {
case ';': // for "print"
case 'q': // for "quit"
case '(':
case ')':
case '+':
case '-':
case '*':
case '/':
case '!':
return Token(ch); // let each character represent itself
case '.':
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
{
cin.putback(ch); // put digit back into the input stream
double val;
cin >> val; // read a floating-point number
return Token('8',val); // let '8' represent "a number"
}
case 's':
{
char q, r, t, br;
cin >> q >> r >> t >> br;
if (q == 'q' && r == 'r' && t == 't' && br == '(') {
cin.putback('('); // put back the bracket
return Token('s'); // let 's' represent sqrt
}
}
default:
error("Bad token");
}
</code></pre>
http://stackoverflow.com/questions/1811358/help-overloading-and-to-display-two-values0help overloading << and >> to display two valuesR. Daneel Olivaw2009-11-28T02:36:40Z2009-11-28T05:30:43Z
<p>This may be a novice question, but I can't figure it out by inspecting the book I have.
The class's constructor initializes two doubles, and I want the following code to output those two doubles with <<.</p>
<pre><code>Complex x( 3.3, 1.1 );
cout << "x: " << x;
</code></pre>
<p>After this I need to overload >> to accept two doubles into these.
This is my first question here, so if my information provided is lacking inform me</p>
<p>EDIT:
I now have for the constructor and overloading statement this:</p>
<pre><code>#include "Complex.h"
Complex::Complex( double realPart, double imaginaryPart )
: real( realPart ),
imaginary( imaginaryPart )
{
}
std::istream& operator>>(std::istream& strm, const Complex &c)
{
double r,i;
strm >> r >> i;
c = Complex(r,i);
return strm;
}
</code></pre>
<p>I know I have to change the "const Complex &c" and the "c = Complex(r,i);" but I'm not sure how to go about it.
Also, I will say here that this is not about the std library's Complex class, although it is based on the same idea. So far everyone has been a great help, but I have a case of the dumb today.</p>
http://stackoverflow.com/questions/659857/how-to-use-microsoft-c-compiler-with-netbeans0How to use Microsoft C++ compiler with NetBeans?Filip2009-03-18T19:54:37Z2009-11-28T05:00:03Z
<p>I was wondering whether it's possible to use Microsoft's C++ compiler and linker with NetBeans IDE?
If so, what's the best way of doing it.</p>
<p>P.S. I'm not interested in Mingw.</p>
<p><strong>EDIT:</strong> Is it possible to get NetBeans to do error parsing (so that I can click on error and have NetBeans open the right file), intellisense, etc? I know NetBeans can work with g++ make files. Why not with nmake?</p>
http://stackoverflow.com/questions/1811423/active-scripting-on-the-server-side0Active Scripting on the server sideSherwood Hu2009-11-28T03:10:20Z2009-11-28T04:34:24Z
<p>I am considering writing a NT service. The service will need scripting capabilities. Users can write some VBScript/JScript code and feed the server. </p>
<p>I also want the script be able to debug in Microsoft Script Debugger.</p>
<p>The service will behave in a similar way as IIS with classic ASP. It gets input from somewhere else. When it get input, it runs the script user provided. </p>
<p>Right now all information I can found is MFC related. If I do not use MFC, how difficult to write such a program? Has anyone done this before?</p>