The dereference tag has no wiki summary.
6
votes
4answers
189 views
Is it considered good style to dereference `new` pointer?
To avoid keep having to use -> and instead work directly with the object, is it acceptable practice to do:
obj x = *(new obj(...));
...
delete &obj;
1
vote
3answers
92 views
What's the standard way to avoid constant dereferencing after using `new` keyword?
The new keyword hands you back a pointer to the object created, which means you keep having to deference it - I'm just afraid performance may suffer.
E.g. a common situation I'm facing:
class cls {
...
0
votes
0answers
36 views
Correct use of the term dereference
I have to work with a somewhat uncommon OO language with its syntax based on Modula-2. (There are no C-style pointers or pointer functions). At work, I often see code by other developers that looks ...
2
votes
4answers
66 views
Dereferencing variables in awk
Why doesn't this work?
x=5
$ ls -l | awk '{print $(($x))}'
should print field 5 of ls -l command, right?
2
votes
2answers
89 views
Why I encounter a NULL terminating character at start of a string when I go backwards through it?
I found the following piece of code embedded in a C++ project. The code goes backwards through a C-style string. When I saw this I thought this should result in undefined behaviour. But it seems to ...
9
votes
4answers
287 views
Is (*i).member less efficient than i->member
Having
struct Person {
string name;
};
Person* p = ...
Assume that no operators are overloaded.
Which is more efficient (if any) ?
(*p).name vs. p->name
Somewhere in the back of my head ...
-2
votes
3answers
66 views
naming pointers as 'pointerToXYZ' [closed]
When I'm using pointers in my code, I don't always remember whether I'm dealing with pointers or the objects they point to. So, I want to call my pointers 'pointerToXYZ'. Do any of the official style ...
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;
...
1
vote
1answer
59 views
Dereference multiple time in template doesn't work
I have this class:
class Node {
int key
Node* next
}
When I create a member function I can do:
node.next->next (and so...)
but when I am using template
template<typename K>
...
0
votes
2answers
87 views
What is the immutable version to de/reference array?
How to de/reference the 3 array variables in this code instead of using mutable values?
The code below computes the Longest common subsequence (LCS) by diagonal traversing the m*n array.
The ...
0
votes
2answers
45 views
Create an empty istream to be filled from a method call
Im trying to create an method that returns an istream. Problem is i cant get an empty reference to pass to the method for filling.
In my main:
std::istream &is;//<-Initialized
is = ...
-1
votes
1answer
37 views
Trouble Dereferencing a double pointer to struct
I can't seem to be able to read the data being pointed to by the double pointer. It's for an assignment for i must use the double pointer.
Getting below error:
Error: Access violation reading ...
1
vote
3answers
102 views
Why can a C++ iterator be dereferenced although it isn't a pointer?
I'm reading C++ Primer 5th, and I encounter code that looks like this:
string s("some string");
if (s.begin() != s.end())
{
auto it = s.begin();
*it = toupper(*it);
}
...
0
votes
1answer
70 views
Improve Groovy Safe Dereference operator in Scala
In response to my question Scala macro to short-circuit null in long chain of accessors? someone pointed me to an earlier long thread with many answers, the most compelling of which to was ...
1
vote
3answers
66 views
Why does gcc allow dereferencing to occur when the pointer isn't pointing at the correct type. Why even have types? [closed]
I posted yesterday about pointers to pointers to pointers etc. here and decided to move the discussion in the comments of the answer to a new question.
My question is why does the compiler allow for ...
0
votes
2answers
58 views
Dereference iterator as part of a boost::bind composite chain
I am trying to use bind to produce a function that:
Receives a map m
returns m.begin()->first
For that I am trying to use boost::bind:
typedef map<int,int>::const_iterator ...
3
votes
2answers
71 views
address of pointer to C multi-dimension array
Question from code below:
#include <stdio.h>
int main(int argc,char *arg[]){
if (argc>2){
int m=atoi(arg[1]);
int n=atoi(arg[2]);
int a[m][n];
int ...
0
votes
2answers
89 views
dereference triple pointer
struct integer3_1 {
int value3;
};
typedef struct integer3_1* intPtr;
struct integer3{
intPtr* vPtr;
};
typedef struct integer3* intpointer3;
int main() {
int value = 5;
...
0
votes
1answer
45 views
pointer & dereference
#include <stdio.h>
#include <stdlib.h>
struct integer2{
int* valuePtr;
struct integer2* next;
};
typedef struct integer2* intpointer2;
int main() {
int value2 = 5;
...
0
votes
1answer
251 views
Why does this don't work in visual studio 2012 (SP2)
This should just replace the '*' by the word POINTER
#define POINTER *
// Define an 8bit byte
typedef unsigned short aByte;
// Define a pointer to an 8bit byte
typedef aByte POINTER aPointerToByte;
...
0
votes
1answer
94 views
Pointer x Reference to a Class in Delphi
Is there any advantage in using Pointer instead Reference to classes?
for example:
TMyClass = class(TObject);
procedure Method;
var
pmc : ^TMyClass;
//instead of
mc : TMyClass;
...
-3
votes
2answers
36 views
Int cannot be deferenced error
I am trying to take the user input from one method and use it in another. I am confused about the error because they are both of type int.
public static void move()
{
System.out.println("What ...
2
votes
1answer
168 views
Cast void pointer to uint64_t array in C
I'm currently working with a Linux kernel module and I need to access some 64-bit values stored in an array, however I first need to cast from a void pointer.
I'm using the kernel function ...
0
votes
4answers
92 views
what is return type of assignment operator?
I am just starting C++. All is fine except that I am confused on the return type of assignment and dereference operator. I am following the book C++ Primer. At various occasions, the author says that ...
0
votes
3answers
130 views
Dereferencing null pointer
I am trying to write a very simple pointer assignment in C++ like this:
float *src;
if(someCondition == true)
src = somePointer;
else
src = someOtherPointer;
However, when I try to access ...
0
votes
2answers
95 views
Does dereferencing a pointer create a copy in this example?
I'm attempting to optimize some code because I must draw the same QPixmap onto a larger one many many times. Since passing a QPixmap by value in my own methods would create copies with each call, I ...
1
vote
2answers
68 views
How to cast string to object?
I have this piece of code :
var regex={"$regex":req.query.query,"$options":req.query.options }
db.collection('coders', function(err, collection) {
collection.find(
{"name":regex}
...
0
votes
4answers
130 views
Struct and pointer to pointer
I am learning about linked lists and how to create them in C with structs and pointers. I have an example below. From my understanding the called push() passes the beginning memory location of our ...
0
votes
0answers
31 views
doube / triple dereference + pointer
Im trying to better understand some double / triple pointers.
VirtualTable* myTable = new VirtualTable();
//get the pointer to the actual virtual method table from our pointer to our class
instance
...
0
votes
6answers
133 views
C/C++ pointer trick fix
I'm trying this pointer trick and I can't figure out how to fix it, I'm running g++ 4.6 on ubuntu 12.04 64-bit. Check out this code below:
int arr[5];
arr[3] = 50;
((short*) arr)[6] = 2;
cout ...
1
vote
2answers
49 views
Dereferencing an array within a struct being used by ptread_create
My ThreadData struct:
typedef struct threadData {
pthread_t *ths;
} threadData;
Where *ths is an array of pthread_t.
Now, I create a thread that uses as action the following function, which ...
2
votes
1answer
138 views
Looping through hash of arrays in Perl
I have a hash of arrays, as follows:
my %hash = (
234 => ["Larry", "Curly", "Moe"],
235 => ["bb", "ab", "aa", "ab", "bb"],
236 => ["aa", "ab", "bb", "aa", "bb"],
)
For each key in my hash, ...
1
vote
5answers
140 views
Is it possible to dereference variable id's in Python [duplicate]
Can you dereference a variable id retrieved from the id function in Python? For example:
dereference(id(a)) == a
I want to know from an academic standpoint; I understand that there are more ...
0
votes
1answer
90 views
How to reference and dereference a hash of hashes for subroutines in Perl
Does anyone know how to dereference a hash of hashes so that I can use it in my subroutine. As you can see, I'm having trouble accessing my Hash of Hashes data structure in my subroutine.
my ...
0
votes
1answer
98 views
Using dereferenced Vector iterator of type string as function argument
I am iterating through a vector with
std::vector<std::string>::reverse_iterator ritr;
I need to at some point find out if a string in this vector is an operator using the function
bool ...
0
votes
2answers
55 views
dereferencing pointer to a pointer
given the following code
#include <stdlib.h>
#include <stdio.h>
typedef struct Foo {
int **bar;
}Foo;
int main(){
Foo *foo = malloc(sizeof(Foo));
foo->bar = ...
6
votes
2answers
178 views
Is size of char * same as size of int *?
I know:
char * is a pointer to char.
and
int * is a pointer to int.
So, i want to confirm following two things:
So now suppose I am on 32 bit machine, then that means memory addresses are 32 bit ...
1
vote
3answers
247 views
Dereferencing Objects in an Array for Java Garbage Collection
I have done some research on the java garbage collector and understand that an object who is no longer referenced will/should be handled by the garbage collector. In terms of arrays-of-objects, I am ...
0
votes
3answers
169 views
C - Programming an array to store words in a text document - malloc or dereferencing issue
I'm trying to read the words from a file word by word and store them in an array. I see that I'm looping through the words just fine, but then when I try to print the array, what it stores is not the ...
0
votes
2answers
56 views
Pointing dereference inside a struct error
i have a function to create a circular list, i am having issues compiling, not sure if it is syntax, appreciate if someone can help.
void CreateCircularList(struct node** listRef, struct node** ...
1
vote
1answer
91 views
Passing null string value via environment variable to TSQL script
I have a DOS batch file I want to use to invoke a TSQL program.
I want to pass the names of the databases to use. This seems to work.
I want to pass the PREFIXES for the names of the tables I want to ...
0
votes
3answers
84 views
When to delete/dereference in C++
myObj* var = new myObj;
var = other1;
don't need it anymore
delete var;
var = new myObj;
var = other2;
why can't just dereference instead of deleting and allocating again?
var->other2;
0
votes
0answers
34 views
De-Referrer: check target-sites for malware
I used to have a de-referrer in my blog and the admin-area. I did this in order to hide the referring address from the target-site, since the referring URL might contain a login-ID.
My provider ...
1
vote
1answer
50 views
Passing QFile to function
I get an illegal indirection error at generateCSVHeader(*file4);.
function declaration:
void generateCSVHeader(QFile * file);
function use:
str="MyData.csv";
QFile file4(str);
...
3
votes
3answers
239 views
How to increment a dereferenced double pointer?
In code I would typically use:
#include <stdlib.h>
void dref1(char **blah)
{
(*blah)[0] = 'a';
(*blah)[1] = 'z';
(*blah)[2] = 0x00;
}
/* or */
void dref2(char **blah)
{
char ...
1
vote
1answer
167 views
Float cannot be dereferenced - using BigDecimal
I am getting an error trying to code a program which calculates interest on a loan, and displays information back with certain decimal positions. I need the loanInterest to display at 3.546%, or ...
1
vote
1answer
48 views
C - cannot increment the value of a dereferenced pointer
I seem to have a problem with a simple program that is supposed to count various character types in a file. It always prints zeroes even though the file is not empty at all. I think it has something ...
0
votes
3answers
95 views
Dereference with (void *) in front
I have some doubts on dereferencing of C pointers. Given the following code:
void *vptr; // declare as a void pointer type
int val = 1;
int *iptr;
// void type can hold any pointer type or ...
3
votes
4answers
122 views
Perl - Two questions regarding proper syntax for dereferencing
as a newbie I am trying to explore perl data structures using this material from atlanta perl mongers, avaliable here Perl Data Structures
Here is the sample code that I've writen, 01.pl is the same ...
0
votes
2answers
141 views
Initializing an array of structs in C then dereference later
I'm trying to build a serial command interpreter, so I want to store my commands in an array. I want each command to have a name and a function pointer so that I can compare the command name to what I ...


