3
votes
3answers
46 views

Pointer passing to function header

I have another problem regarding pointers. I have a function with the following header: addActor (NxuPhysicsCollection &c, NxActor &a, const char *userProperties=0, const char *actorId=0) ...
0
votes
5answers
83 views

Singleton destructor called error [duplicate]

#pragma once #include <time.h> class CTimer { time_t _last; CTimer() { _last = time( NULL ); } CTimer(const CTimer &); CTimer& operator=(const CTimer&); ...
0
votes
4answers
159 views

C++: better to keep reference or pointer? [closed]

This might be regarded as a style question. I have a class that keeps a reference to an instance of another class: class A { }; class B { A& ref; public: explicit B(A& ref) : A(ref) { } ...
-3
votes
1answer
61 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
0
votes
2answers
49 views

Passing an address to a class and from there to its “child-class” by reference in C++

"pointer" holds the address of "Int". I want to pass that address to my given classes by reference: class N { public: N(int &pPointer){ std::cout << "Address: " << ...
-1
votes
1answer
48 views

difference between & and * declaration [duplicate]

To elaborate the title, what is the difference between book& a = b; and book* a = &b; After learning C, these class declaration is really confusing me. Can anyone explain how these two ...
0
votes
0answers
50 views

should I return a pointer or a reference in C++ functions and classes? [duplicate]

What are the pros and cons of each, which is done under what circumstances? Returning a reference or a pointer appears quite similar, I don't know which should really be done.
2
votes
4answers
77 views

Is there one rule or priority to choose value/pointer/reference?

how to choose value or pointer or reference? when I code in c++, I don't have a clean idea when to choose each one? Is there one priority or rule when choosing?
-5
votes
1answer
73 views

Returning int, int* and int& from a function

I just wanted to clarify something, imagine we have the function signature: 1) int* X(){} 2) int Y(){} 3) int& Z(){} I am trying to work out the exhaustive possibilities of types of values I ...
1
vote
4answers
41 views

dereferencing when constructing dynamic object

Why isn't the following used: struct Foo { int x; }; int main() { Foo &foo = *new Foo(); foo.x = 7; std::cout << foo.x << std::endl; delete &foo; } After ...
0
votes
1answer
45 views

No matching function for call : const pointer to pointer

I have the following function declaration int vectorQuantization(const Color **input, Color **output, const int rows, const int cols, const int numColors); and when I try to ...
5
votes
1answer
113 views

Dereference and return by reference

Consider a small unit test case struct A { virtual void func(){} A& foo() { A *obj = reinterpret_cast<A*>(0xdeadbeef); return *obj; //1 } }; int main() { A obj = ...
0
votes
1answer
77 views

Returning a pointer or a reference in C

Having the following, struct node{ int value; struct node *next; }; typedef struct node Node; typedef struct node *pNode; Node newNode(){ Node n; n.value = 5; return n; } pNode ...
0
votes
5answers
149 views

Why are pointers not convertible to references?

I've read in multiple sources that a C++ reference is no more than a pointer with compile time restrictions. If this is true, how come I am forced to dereference a pointer in order to pass it to a ...
2
votes
2answers
100 views

What's wrong with defining a reference to a pointer to a const data with non-const pointer?

int main() { const int* x; int* pa = x;//removes const, so UB. const int*& pb = pa;//error int* pd = pb;//error return 0; } I know that it's not possible to define a pointer ...
2
votes
3answers
73 views

C++: Why does my function return a reference address different from the dereferenced pointer's address?

I was under the impression that addresses of references to a dereferenced pointer were the same as the address of the pointer (so question here). But when I write a function that returns a reference ...
4
votes
3answers
92 views

Copy an array reference in VBA

Is there any way to copy an array reference in VBA (or VB6)? In VBA, arrays are value types. Assigning one array variable to another copies the entire array. I want to get two array variables to ...
0
votes
2answers
86 views

Is passing by reference is a special case of passing as pointer? [duplicate]

I haven't understand passing by reference in C++ completely. I already read related questions like the following ones. What are the differences between pointer variable and reference variable in ...
0
votes
2answers
77 views

How to force the function implementation should be reference input type rather than value type

Please suggest me a way to force the third part implementer should use pass by reference input argument type rather than using pass by value type. I know using pointer we can achieve this but I dont ...
0
votes
3answers
55 views

Can I modify the target of a pointer passed as parameter?

Can a function change the target of a pointer passed as parameter so that the effect remains outside the function? void load(type *parameter) { delete parameter; parameter = new ...
-2
votes
1answer
54 views

return a reference/pointer node from a linked list c

i'm trying to return a reference/pointer node from a linked list that i create. here is my class and the method Return node, when i pass a value it does a look up in my list, but the compiler is ...
14
votes
4answers
369 views

C# ref is it like a pointer in C/C++ or a reference in C++?

I'm working with the ref and don't understand clearly "Is it like a pointer as in C/C++ or it's like a reference in C++?" Why did I ask such a weak question as you thought for a moment? Because, when ...
0
votes
3answers
98 views

Function to change array data - data not changing. C

I'm new to C but I've programmed in pascal a few weeks ago. In pascal, if you want to change an arrays data, you pass by reference, by typing var myArray essentially. I can't figure out how to do this ...
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
5answers
62 views

Assign a byte pointer to a struct in C

This one is annoying me, but I want to avoid the obvious solution of just using memcpy. struct Person { //Some variables }; void doSomething(char* pointerToSomeone) { struct Person bob; ...
0
votes
1answer
46 views

Difference between an int passed by reference and a passed address of an int

void VoidRef (int &ref){ ref++; } void VoidPtr (int *ptr){ (*ptr)++; } int test= 5; VoidRef(test); cout << test; // is 6 VoidPtr(&test); cout << test; // is 7 ! Why do ...
-2
votes
5answers
59 views

C++: passing address of int as parameter [closed]

Why is "Void" actually returning "6" ? void Void (int &ref){ ref++; } int main () { int test= 5; Void(test); cout << test; // is 6 return 0; } I don't quite ...
2
votes
1answer
65 views

Why can the compiler find one of these operator overloads but not the other?

I am trying to serialize a custom class I have made, given a pointer to an instance of the class. This code fails to compile because it can't resolve the operator<<(out, myObj). ...
2
votes
5answers
130 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>(); ...
3
votes
4answers
69 views

Hiding pointers with references

Is it a good thing to hide pointers members with setters that use references? class Foo { Bar* m_ptr; public : void setBar(Bar& bar){m_ptr = &bar;} }; Or is it preferable to expose ...
0
votes
1answer
67 views

Pass pointers to objects by constant reference in C++

I'm doing a practical assignment for university and I've run into a problem. I've got a class that declares this method: bool graficarTablero(const Tablero *&tablero, const string ...
2
votes
2answers
54 views

PHP dynamic string update with reference

Is there any way to do this: $myVar = 2; $str = "I'm number:".$myVar; $myVar = 3; echo $str; output would be: "I'm number: 3"; I'd like to have a string where part of it would be like a pointer ...
0
votes
2answers
40 views

Javascript: reference an array with a variable, instead of duplicating it

let's say I have two javascript arrays, like this: arrA = [1,2,3] arrB = [4,5,6] Is there a way I can reference them with different variable names down then road? If I do this: arrC = arrA arrD = ...
1
vote
1answer
93 views

Why references can not be reinitialized in C++? [duplicate]

Why references can not be reinitialized in C++ while pointers can be reinitialized? int x=5; int y=6; int *p1; p1 = &x; p1 = &y; //re-initializing the pointer but same can not be done with ...
0
votes
2answers
49 views

Advantage of function taking a pointer to a collection, to avoid copying on return?

Suppose I have the following C++ function: // Returns a set containing {1!, 2!, ..., n!}. set<int> GetFactorials(int n) { set<int> ret; int curr = 1; for (int i = 1; i < n; i++) ...
0
votes
2answers
135 views

C++ Pointers/References

This code takes coordinates from mouse click and creates a new vertex; void DrawingWidget::mousePressEvent(QMouseEvent *event){ if(getCurrentState()==ADD_VERTEX){ x=event->x(); ...
-1
votes
1answer
75 views

Add a struct pointer to the end of a pointer of structs

I've searched through the forums for awhile, but can't seem to get this problem fixed. It compiles and does almost everything I need it to do, but one thing is off. Whenever I update a chore_array, ...
1
vote
5answers
75 views

Does a pointer to a reference point to the adress of the reference or the value?

Imagine the following scenario: class ABC { public: int abc; }; ABC& modifyABC(ABC& foo) { foo.abc+=1337; return foo; } void saveABC(ABC& bar, std::vector<ABC*>& ...
1
vote
2answers
82 views

return value for overloaded operator

I'm sorry if this is a very basic question, I'm pretty new to C++. I'm trying to define my own vector class and an iterator for it. However, whenever I overload an operator the value that is returned ...
1
vote
2answers
57 views

How to return from a non-void function?

I have a function below that searches through a vector of my_type. Currently, it has a compilation warning: control reaches end of non-void function [-Wreturn-type]. It appears that as long as I am ...
0
votes
0answers
27 views

comparable type referencing

can someone please explain what a functions like this const Comparable & findMin() const; void insert ( const Comparable & x ); mean. Comparable is declared as template . what i ...
-1
votes
4answers
109 views

C++ interview about operator

Here is the code which basically implementing the = assignment for a class named CMyString, and the code is right. CMyString& CMyString::operator =(const CMyString &str) { if(this == ...
0
votes
3answers
43 views

`const`ness, referencing and function calling

class Foo{}; class BarParent { Foo* p_foo; public: BarParent(Foo * const p_x) //OR BarParent(Foo const * x) OR BarParent(Foo * x) //OR (Foo const * const x) ...
0
votes
1answer
67 views

C++ : how is a reference to the value of a pointer is updated when the pointer itself changes? [duplicate]

Consider the following program: include <iostream> using namespace std; int main() { int *ptr = new int(10); int &ref = *ptr; cout << ref << endl << ...
0
votes
2answers
61 views

Is passing a pointer by reference the correct way to do this?

This is my function: void CreateRenderTarget(HWND, ID2D1HwndRenderTarget*); and there is how it works: void D2DRes::CreateRenderTarget(HWND hwnd, ID2D1HwndRenderTarget* pRT) { RECT rc; ...
3
votes
2answers
76 views

fastest way to pass large objects

Take the following function as a example string print() { return (some string that has been formed); }; and now lets say that this print function will form a ridiculously large string, that ...
0
votes
4answers
98 views

Using *this to initialize a reference

I'm trying to initialize an instance of my class ShadeRec with its constructor: ShadeRec(World& world); So I pass to it: ShadeRec sr(*this); where "this" is an instance of the class World. ...
3
votes
2answers
97 views

C++ - Why does a static string give slightly different addresses when referred to by different functions?

Just trying to get to grips with the intricacies of C++ and therefore am messing around with strings and pointers. However, I have come up against something I don't really understand. First off, I am ...
0
votes
2answers
162 views

Passing an array by reference using pointers in C++

In some new territory working with pointers and references, I am attempting to pass an array by reference into a function using a pointer, however I keep getting errors no matter what I try, I am sure ...
2
votes
2answers
72 views

How to null struct when passed to function?

I want to NULL the head structure in case the head->next is NULL. However it doesn't work when I pass it into a function to null it. void remove(struct node* head) { int val; cout << "Enter ...

1 2 3 4 5 12