C++ is a widely-used, statically-typed, free-form, compiled, multi-paradigm, multi-level, imperative, general-purpose, object-oriented programming language based on C.

learn more… | top users | synonyms (1)

0
votes
0answers
2 views

Linking static library to .cpp file

I have a libcx3d.a which contains my VrmlParser class and other classes which are used by VrmlParser. I have a main.cpp which does this : `VrmlParser vp = new VrmlParser(); double **VOB = ...
0
votes
0answers
3 views

Is there a way to copy non-conflicting map values using std::copy?

I'm looking for a way to copy values from one map into another, similar to this question, but I don't want conflicting values to be overwritten by the second map, I want the original values to remain ...
0
votes
0answers
19 views

How do you display particular nodes in a Linked List?

I'm am fairly new to C++. I have this code from an assignment, i don't quite understand all of it, but i have to make the program give an option at the end for the user to recall any partnumber that ...
0
votes
1answer
31 views

C++ Read .txt file columns into an array

Hello all I am not new to C++ but my skills are not very honed. Anyways I have an assignment that I was not able to complete on time, and it is really bugging me that I could not get my code to work. ...
0
votes
0answers
12 views

Covariance with C++/CLI and Templates

I'm trying to make a bridge between my native library and my C# client code. To do this, I have an interface called "IHasManagedWrapper": #ifndef IHASMANAGEDWRAPPER_H_ #define IHASMANAGEDWRAPPER_H_ ...
0
votes
2answers
42 views

What does an empty locale parameter mean?

I saw code that used a locale but didn't provide a name for it. I saw this several times actually and I'm not sure how it works. auto& f = ...
0
votes
1answer
38 views

How to create a template class with N different types of variable members so that

Here is what I want to achieve: A template class, it has N variable members, each of them may have different type. Also this class can get N functions/functors outside so that each functor will ...
0
votes
2answers
55 views

commenting out cout statement causes different (and incorrect) output

I have never experienced anything like this. I was using a cout statement to help me debug a small program, and once I was satisfied with my code I commented out the cout. Now, the code no longer ...
1
vote
2answers
33 views

how virtual inheritance works

class B { public: B(char c = 'a') : m_c(c) {} public: fun(); private: char m_c; }; class C: virtual public B { }; class D: virtual public B { }; class E : public C , public D ...
0
votes
0answers
14 views

Debugging map<int, unique_ptr<A>> in gdb

I use g++ 4.8 that supports c++ 11 feature on my mac. /opt/local/bin/g++-mp-4.8 I also use gdb 6.3.50. GNU gdb 6.3.50-20050815 (Apple version gdb-1822) (Sun Aug 5 03:00:42 UTC 2012) Copyright ...
-4
votes
0answers
28 views

String And Binary - JAVA to C++? [closed]

import java.math.BigInteger; public class ABCoder { public static String String2Binary(String text) { text = new BigInteger(text.getBytes()).toString(2); return text; } ...
0
votes
0answers
15 views

How to use environment variable on relative path on Visual Studio C++ 2012

I am including few cpp files from mongodb source package on my VC++ project, the problem when I add the files, the Relative Path looks like this: ...
2
votes
1answer
64 views

Checking the object type in C++ 11

I have class B that inherits from A. class A { }; class B : public A { }; And I have three objects. A* a = new A(); A* a2 = new B(); B* b = new B(); I'd like to check a is object of type A, a2 ...
-1
votes
0answers
24 views

Compare 2D array with some logic, can't think of it

//2D array with row4 and column4 11 12 18 40 14 15 13 22 11 17 19 23 17 14 20 28 My question is how do i looping the idea like this . When looping for [0][0] = 11. for the same entire ...
0
votes
1answer
26 views

All the possible combinations of 'n' strings, with repetitions: C= n!/(n-k)!

I'm trying to have something like this: combination no 1: sentence1 sentence2 sentence3 sentence4 combination no 2: sentence1 sentence2 sentence4 sentence3 combination no 3: sentence1 sentence3 ...
0
votes
0answers
20 views

Running external C++ exe under Release Mode in Visual Studio

I have a third party C++ exe file that Im calling from my C# windows forms app: System.Diagnostics.Process proc = new Process(); proc.StartInfo.Verb = "runas"; proc.StartInfo.FileName = ...
1
vote
1answer
48 views

std::lower_bound() implementation

I am curious why std::lower_bound() asks for passing by value for the compare function rather than by reference? Passing by value means a copy is needed, slowing things down; especially, if someone ...
0
votes
1answer
21 views

Never provide destructor in the PIMPL(using boost scoped_ptr), the g++(4.6.1) doesn't generate compile error, Why?

After I read the reference link: ust provide destructor in the PIMPL, I do the follow the example, but the g++(4.6.1) doesn't generate compile error as I expected The source code is: // Predeclare.h ...
0
votes
0answers
7 views

processing heterogeneous vectors in (C++-AMP)

I've written code that read and parse variable number of .dat files and store them into 2D vectors, each file in separated vector. Now, I'm trying to take advantage of parallel processing (GPU) in ...
1
vote
4answers
41 views

C++, destructor of a singleton class is called once again

I made a simple singleton class. While running test, I got some weired result. Destructor is called once again. Here is result and my code. Result : I expect destructor is called 4 times, because ...
0
votes
1answer
20 views

send/receive structs instead of char array

i was checking out chat applications in c++ and found this at server int ServerThread(int ID) { Buffer sbuffer; char* Recv = new char[256]; ZeroMemory(Recv, 256); // In Send we ...
0
votes
1answer
9 views

Capturing modifier keys Qt

I am trying to understand how to handle various events with Qt and have found an issue I cannot understand with key modifiers e.g. Ctrl Shift Alt etc. I have made a default Qt GUI Application in Qt ...
0
votes
1answer
21 views

C++ Running a function pointer of class A from within class B as callback

I'm trying to run a method of one class from inside another class, I have a basic GUI that lets the user fill his name and password, and when it clicks the login button another takes over and handles ...
1
vote
1answer
128 views

How to let -1==-1.0000000000001

Here is a part of my code: double tmp = OP.innerProduct(OQ); double tmp2 = -1; and the value of tmp and tmp2 is: (in binary) tmp = ...
0
votes
2answers
22 views

Why do std classes not use static_assert on non-copyable types?

Why does the std library not use these instead? Currently if a call is made to the copy constructor on a non-copyable object, the error message can be a little 'cryptic' or confusing to someone who ...
-5
votes
1answer
30 views

warning C4018: '>' : signed/unsigned mismatch

Can anyone help me with the signed unsigned mismatch? It's regarding if my_size void set::add(SET_ITEM_TYPE newItem) // post: If newItem is not in this set, newItem is added // and the ...
1
vote
3answers
45 views

Is there a way to do this using templated functions in c++

I'm currently writing some code to convert java code to c++ code and consequently ending up with some pretty hairy issues. My question is, is it possible to have an overloaded operator that returns ...
1
vote
0answers
17 views

C++ AMP Constructors

Do constructors for a struct that will be used in amp code need to have restrict(amp) included? Ex: struct Foo { inline Foo(void) { } float a; }; Or should it be like... struct Foo { ...
2
votes
3answers
70 views

First time using classes in C++, what's going on?

I am trying to implement a custom tree structure, but I am getting a weird output. enum letter{B,A,T,G,C,N}; struct Node { int ltr; Node* ptr; }; class GTree { public: GTree(int); ...
3
votes
0answers
37 views

Feedback about using make on a project with many subdirectories

To my Object Oriented Programming course, I must do a final proyect (academic purposes). I want to make a proyect "the right way" (ie: makefile, modular, DRY, easily scalable, etc) in order to better ...
4
votes
0answers
30 views

Optimizing compile-time performance by caching metafunctions

Let's say I have the following metafunction: template <typename T> struct make_pair { using type = std::pair< typename std::remove_reference<T>::type, typename ...
0
votes
1answer
17 views

Trouble opening .dat file

Having a hard time trying to figure out what I'm doing wrong when trying to open "test.dat" file. It seems to be opening it, but not reading it to give output. The program is supposed to read the ...
2
votes
2answers
28 views

gdb - get variable name of register

In GDB, info registers or info all-registers will show you all of the register symbol names and their values. Question: How do I get the variable name (i.e. from the source code) that is ...
0
votes
0answers
16 views

Creating PSP Homebrew App - Starting out

I'm having some trouble starting out with PSP Homebrew. I purchased a PSP 1001 model and successfully hacked it, but I'm having some trouble getting some information about how to start out creating a ...
2
votes
4answers
32 views

char pointers, char arrays, and strings in the context of a function call

What is the difference between the line that does not compile and the line that does compile? The line that does not compile gives this warning: deprecated conversion from string constant to 'char*' ...
2
votes
2answers
66 views

Why doesn't this code to cast a std::array to a std::string not display anything?

I'm using this template to change my std::array to a string. Why doesn't it print out anything? #include <iostream> #include <string> #include <array> template<std::size_t ...
1
vote
1answer
48 views

Java deserialization in C++

I'm working on a C++ application that has to process a variety of message types. One of the types is serialized Java objects (for which no source is available). I'm wondering if anyone is aware of a ...
0
votes
1answer
10 views

How do you create custom widgets in Qt5?

I'm fairly new to Qt, and come from a .NET background. I'm looking to create a custom widget, something like a UserControl in .NET. The most popular method I found online was using Qt's widget ...
0
votes
1answer
10 views

use ImageMagick command to draw sequence of points in c++

If I want to draw a circle at position (10,10) for size(5,5) on the image test.jpg, I could use the command system("convert test.jpg -fill blue -draw \"circle 10,10,5,5\" output1.jpg"); Now I have ...
2
votes
3answers
55 views

How to set two vector<unique_ptr<…>>'s equal to one another?

I am using Visual Studio 2012 C++ and I want to set two vectors with unique pointers equal to one another. using namespace std; vector<unique_ptr<Unit>> unitVector; ...
7
votes
1answer
66 views

C++ reset locale to “C” globally?

In a project I am currently working on I link to a proprietary dynamic library. As soon as I run the library's initialize function, the behavior of logging and printing of numbers changes. Commas ...
4
votes
1answer
73 views

Why read file first then check?

I'm just revising for my exams and can't get my head around the following provided by our lecturer: When opening fstreams, check if you have opened or not Then read before check for ...
4
votes
5answers
114 views

C++ Is it possible to determine whether a pointer points to a valid object?

I'm learning C++ and reading C++ Primer. There's a question I would like to know the answer: Given a pointer p, can you determine whether p points to a valid object? If so, how? If not, why not? ...
0
votes
1answer
41 views

c++ creating a window in a new thread

I have a basic window program, the problem is when i try to create a window in a new thread after the message loop has already started the window displays for a second and disappears. does anyone no ...
6
votes
2answers
77 views

Disable commas in cout?

In a project I am currently working on I link to a proprietary dynamic library. As soon as I run the library's initialize function, the behavior of logging and printing of numbers changes. Commas ...
1
vote
3answers
62 views

typedef function usage in C

I'm trying to call the following function but I cannot figure out how to fill in the third parameter. RSA* PEM_read_RSAPrivateKey(FILE *fp, RSA **x, pem_password_cb *cb, void *u); Looking up ...
-2
votes
1answer
60 views

How can we return a Matrix in C++?

I'm new in C and i need to return a matrix form a procedure... I need to write a matrix on the procedure and return it to main and show it. what i have is this : int write_matrix() { int ...
0
votes
0answers
18 views

OS shutdown notification in volume filter driver

I have a Windows volume filter driver that opens and holds a file while working. I need to close that file upon system shutdown. For that task I need a shutdown notification that comes in while the ...
0
votes
1answer
62 views

C++ Fastest Way to Hit a URL

I'm trying to ping a URL on a server in the middle of my high-performance C++ application, where every millisecond is critical. I don't care about the return data from the query... I just need to ...
0
votes
1answer
27 views

g++ cannot link to libdl even with -ldl flag

I am attempting to compile an example application for a USB camera (mvBlueFOX) sold by Matrix Vision. They provide me with the source code for the application, a make file, and a set of pre-compiled ...

1 2 3 4 5 4170