Tagged Questions
0
votes
1answer
49 views
Virtual method of copy of Pointer not working
I'm having a problem with Overriding methods on C++
First, everything worked just fine, then, I made some changes to keep the code more "organized" and to share on GitHub.
After doing some OO ...
0
votes
1answer
44 views
Conversion warning. and Class error
I'm learning C++, and in an assignment I'm doing right now, I get a bunch of warnings that I suspect are causing the two errors I'm getting as well. The problem is that the lines where the warnings ...
0
votes
0answers
16 views
C# keeping values of object pointers for further retrieving
Hope someone can help me with this.
I have a method (user_login) than prompts for a user to login and then generates and returns an invoice and a token.
The problem is that if the user has already ...
-2
votes
1answer
57 views
C++, how to delete member **object (using delete)
I have an **object (**personnel) as a member inside(composition) another object, I want to free the memory that **personnel points to and point it to another **temp (personnel=temp), without deleteing ...
0
votes
4answers
59 views
Java Null Pointer Exceptions
I am getting a null pointer exception that I cannot think how to fix. The array in question is a class array, and should be accessible to the method that is utilizing it.
Here is the main method:
...
0
votes
2answers
56 views
Accessing object (using reference or pointer) from a thread
I have a C++ process that initialize a class that store in a std::map some data, and then another class -- that will be executed in a thread -- to which I pass a pointer (I tried also a reference) of ...
2
votes
3answers
222 views
C++ Difference between *new and new [duplicate]
This question may be a duplicate. I have been looking online everywhere to figure this out, but I can't find anything. What is the difference between 'new' and '*new'?:
int main()
{
class Cat
...
2
votes
5answers
131 views
How does Java Object reference works?
I running to a situation and I am very confused. Please help me out.
Let's say I have a code like this.
MyClass obj1 = null;
List<MyClass> testList = new ArrayList<MyClass>();
...
0
votes
7answers
52 views
Using an array to point to an object and printing to the screen?
I'm having problems with using an array to point to an object then printing the content of that object to the screen.
So far my code is:
//Card
Card cardPack = new Card();
string[] ...
1
vote
3answers
55 views
Class Objects or Pointers to their Objects? Class object combination and Implementation
Background of the issue
I'm working on a basic battleship-like spinoff game that I want to continue to add features to over time in C++ (no graphics). Currently I have a 50 x 75 game board, ...
0
votes
2answers
59 views
(c++) what happens to objects on the heap that don't have any pointers to them?
do they become memory leaks or does c++ realize they have no pointers aiming at them and free up that memory? If they must be deleted i just use the delete command right?
0
votes
2answers
74 views
Object pointer array returns one more value?
So I have this pointer array that points to a maximum of 4 objects of the same base class.
private:
Instance* paths[3];
I assign a pointer to a slot of the array if there is an object I want to ...
-1
votes
6answers
260 views
no suitable constructor exists to convert from “test *” to “test”, constructor,
I'm new to c++ and I'm having difficulties with constructor and classes. So, here is my header file:
#pragma once
#include <string>
using namespace std;
class test
{
private:
string ...
0
votes
1answer
70 views
Get Singleton of class that WILL be included
i currently have this classes:
Activity, ActivityManager (that extends Activity).
I have one method in Activity, that gets the singleton object of ActivityManager.
After a while, i saw that i got ...
0
votes
2answers
68 views
assignment operator on objects
I'm new to programming, based on google search, first hit was always 'stackoverflow',
it has been very helpful. I didn't get an answer for this part. Its a simple code, I've
been trying to learn how ...
1
vote
4answers
86 views
Make a pointer to an object in the constructor C++
I would like to know how to make a pointer to a newly created object in the constructor in c++?
What is the address of a class?
class MyClass
{
public:
};
class MyClass2
{
public:
//I ...
0
votes
3answers
63 views
Difference of class objects and pointers
Say we have this class:
class book {
public:
book(int pages = 0) {pages = m_pages;}
getPages() { return m_pages;}
setPages(int pages) { pages = m_pages;}
private:
int m_pages;
};
I ...
0
votes
2answers
71 views
Passing a reference to an object for mutation C++
I have an object with a method that needs to mutate an outside instantiated object. I've been trying to reference the object in the parameter and that is clearly not working. This is what I have:
...
-1
votes
5answers
140 views
c++ “new” keyword comparision to java [closed]
first of all i hope this isnt a dublicate. Im am a java programmer and changing to c++ now.
In java you can do like this
Object obj = new Object();
and to my understanding you can the same thing ...
-1
votes
1answer
172 views
1 [main] 972 exception::handle: Exception: STATUS_ACCESS_VIOLATION expiation and how to fix
To ask as simply as possible can anyone explain why this code:
LinkedListByGrade::LinkedListByGrade(vector<Node> myNodes) {
int lowestGradeFound = myNodes[0].getGrade();
Node *pFristNode = new ...
0
votes
2answers
61 views
python: multiple objects that can modify the attributes of a single 'master' object
Suppose I have a single instance of a master object that contains a set of parameters, then multiple instances of slave objects that should be able to access and modify the attributes of the master. ...
0
votes
2answers
79 views
Class object pointer won't assign to string
I am attempting to assign a pointer to a value like so
string name;
XMLSerial * ptr;
if(name == "Armor")
{
ptr = &name;
}
Name is initialized earlier. XMLSerial is ...
1
vote
4answers
80 views
An element of a pointer vector of object pointers assignment
I'm having trouble assigning an element of a pointer vector of object pointers to an object pointer. I'm on a Linux and using Eclipse IDE. If you want to take a look at my problem:
void ...
1
vote
3answers
76 views
Creating pointers out of HashMap objects in an object array
This is sort of an follow up to the first post I made, lets say I got two classes:
public class Carinfo {
private String carname;
//The Carinfo[] value is set when making a new car
//so ...
0
votes
1answer
32 views
Implicit object pointers in Objective-C
I'm teaching myself Objective-C 2.0 using Apple's Programming With Objective-C guide.
I have a question regarding what I believe to be implicitly created pointers.
If I were to rewrite the example ...
1
vote
4answers
245 views
Dynamic arrays of objects/classes in C++
I'll cut to the chase to save you all some boredom of surplus reading:
I've tried to comb the internet in search of tutorials over dynamical arrays of objects/classes where they explain how pointers ...
0
votes
1answer
45 views
Using pointers to adjust global objects in objective-c
Ok, so I am working with two sets of data that are extremely similar, and at the same time, these data sets are both global NSMutableArrays within the object.
data_set_one = [[NSMutableArray alloc] ...
1
vote
1answer
480 views
Error: ‘void*’ is not a pointer-to-object type
I'm trying to access function from dynamic library, that instantiates an instance of Person, and returns pointer to it as void pointer. The program then has to cast the void pointer to a Person, using ...
1
vote
1answer
90 views
C++ Referencing an objects current state within another object
I've searched high and low for an answer to this question and have attempted many solutions including forward declaration, pointers, and references. I'm sure I'm just using incorrect syntax somewhere. ...
0
votes
1answer
19 views
Returning object with pointer in it
I have created this simple object in C++:
class Array
{
int Size;
int * pArr;
public:
explicit Array(int InSize = 0)
{
Size=InSize;
if (Size)
pArr = new ...
0
votes
0answers
77 views
VS2010 error expression cannot be evaluated in C++
I have an object which is active, and having the variables which are pointers. It has been initialized with the proper value, which appears correct in the locals.
I am trying to use pointer ...
1
vote
1answer
61 views
Removing from a list holding object pointers
I am holding some objects in the list, such as this one:
list<CWorm*> wormList;
I put the worms on this list, in their constructor:
CWorm::CWorm(list<CWorm*>& list, [...]) {
...
-5
votes
2answers
162 views
Array of template class object [closed]
I'd like to make an array of multiple template objects.
For example, how to make an array filled with these 2 objects :
Foo< A, B, C > FooItem (bar_, bor_);
Foo < D, E, F > FooItem2 ...
2
votes
2answers
69 views
Does this return the pointer to the values or does it copy the values?
Well OK, I got confused. I believe it returns the pointer to the original map?
private HttpServletRequest originalRequest;
Map params = originalRequest.getParameterMap();
...
-1
votes
2answers
100 views
method passing another objects as parameters [closed]
mad_scie has given a correct answer.
The steps are as follows.
1>Create a handler method in Postfix say
public handleString( String s) {
........
........
}
2> Instantiate Postfix class within ...
1
vote
1answer
66 views
Fill array objects with the same data or use a pointer?
I'm developing a game using c++ and I don't know what's the better approach to my problem.
I have an array with gameObject objects, each one has an array with frames of animation that I loop through ...
0
votes
3answers
400 views
resize array of pointers c++
Let's say that I have this
#define T 10
StackOverflow *_stObject[H];
How can I "resize" this array to 20?
I cannot use vectors. I have to copy that 11 positions to another array of pointers with ...
-2
votes
4answers
113 views
Array object pointers with string assignment causes crash
So I am trying to assign a string value to an object in an array.
The object code is:
typedef struct BiTreeData_ {
char* word;
int start_word_count;
int end_word_count;
int ...
2
votes
3answers
133 views
Returning an object or a pointer in C++
In C++, should my method return an object or a pointer to an object? How to decide? What if it's an operator? How can I define?
And one more thing - if the pointer turns to be a vector, how can I ...
3
votes
4answers
103 views
c++: destruct with a pointer to object
If an object exists as such:
MyClass obj;
To call a member function:
obj.myMemberFunction();
Then to call the destructor of that object after it fulfills its purpose:
delete obj;
However, ...
1
vote
3answers
136 views
Array of pointers to objects using the default constructor
I was thinking today while reading about the default constructor of classes in C++ and let's say we have this code of the class SortedArray:
class SortedArray
{
private:
struct arrayCell
{
...
1
vote
2answers
130 views
Java: update object reference globally
I want to update a reference to an object globally (nearly the same question as Update all references to an object when the object is updated(reference to a reference)).
I have the following code ...
0
votes
3answers
91 views
Passing self as parameter
I am fairly new at Objective C and may be confused since I am used to C++. I am making an iphone game and what I want to do is have a class all enemies and heros "register" and "unregister" to. I ...
1
vote
4answers
73 views
Using new with an object [closed]
I'm learning how to make programs using Qt. My question is about 3 things i'm not very good at: pointers, objects and "new()".
Look: (Dialog is a class)
//start of code...
...
private:
Dialog ...
0
votes
1answer
93 views
Is it possible to Cast an Object to a not related Class?
Say I have two classes with different names but the exactly same structure. It there a way to cast an object of the one class to one of the other?
This might sound stupid to do but there is a reason ...
3
votes
1answer
155 views
C++ memory allocation for objects pointers
#include <iostream>
using namespace std;
class test
{
public:
int a,b[100];
test() {
cout << "Constructor called" << " \n " ;
a=10;
}
};
int main()
{
...
0
votes
1answer
60 views
how to point shm object to an other shm object
Hi I've learned that if I have a shared memory (c++) class object then it makes no sense to add member variables which are poiners if this pointer would be used in unrelated processes to access the ...
0
votes
2answers
104 views
C++ Can I pass a pointer to an object within its own function?
For example,
I have a class foo with some member functions..
within some function say..
void foo::someFunction()
{
int pointer = ??????
}
How do I pass a pointer pointing to the object foo?
...
0
votes
4answers
177 views
What is the difference between static functions to a static pointer to the class
To be honest there are a couple of questions I'd like to ask, but will use only one question to do them.
By what I've seen static functions can be accessed externally without the needs of a class ...
0
votes
2answers
138 views
Access private array of pointers to objects from a method in c++
I'm not sure really what to search for to try and find my answer, so please redirect me to any relevant articles and I apologize in advance.
I'm really new to C++ and am trying to make a 3x3 CLI ...


