Tagged Questions
The dereference tag has no wiki summary.
32
votes
5answers
1k views
Why is the dereference operator (*) also used to declare a pointer?
I'm not sure if this is a proper programming question, but it's something that has always bothered me, and I wonder if I'm the only one.
When initially learning C++, I understood the concept of ...
14
votes
3answers
459 views
Why is dereferencing a pointer called dereferencing?
Why is dereferencing called dereferencing?
I'm just learning pointers properly, and I'd like to know why dereferencing is called that. It confused me as it sounds like you are removing a reference, ...
9
votes
5answers
758 views
Which of these will create a null pointer?
The standard says that dereferencing the null pointer leads to undefined behaviour. But what is "the null pointer"? In the following code, what we call "the null pointer":
struct X
{
static X* ...
9
votes
6answers
868 views
ptr->hello(); /* VERSUS */ (*ptr).hello();
i was learning about c++ pointers... so the "->" operator seemed strange to me... instead of
ptr->hello();
one could write
(*ptr).hello();
because it also seems to work, so i thought the former is ...
8
votes
3answers
132 views
Is a closure for dereferencing variables useful?
I'm not sure whether or when it is useful (to improve performance) to dereference variables.
var x = a.b.c.d[some_key].f;
while (loop) {
do_something_with(x);
}
seems to be better than
while ...
8
votes
3answers
557 views
C++ - Difference between (*). and ->?
Is there any difference in performance - or otherwise - between:
ptr->a();
and
(*ptr).a();
?
7
votes
4answers
1k views
Can the Subversion client (svn) derefence symbolic links as if they were files?
I have a directory on a Linux system that mostly contains symlinks to files on a different filesystem. I'd like to add the directory to a Subversion repository, dereferencing the symlinks in the ...
6
votes
5answers
418 views
How do I dereference a hash that's been returned from a method of a class?
I have a class with a method that returns a hash. Ordinarily, I would get the result like so:
%resp = $myclass->sub($foo);
And then access members of the returned hash like this:
...
6
votes
5answers
140 views
How can I pass the elements in a Perl array reference as separate arguments to a subroutine?
I have a list that contains arguments I want to pass to a function. How do I call that function?
For example, imagine I had this function:
sub foo {
my ($arg0, $arg1, $arg2) = @_;
print "$arg0 ...
5
votes
4answers
401 views
Does dereferencing a pointer make a copy of it?
Does dereferencing a pointer and passing that to a function which takes its argument by reference create a copy of the object?
5
votes
1answer
464 views
Why printf( “%s” , ptr ) is able to dereference a void*?
When we talk about dereference, is it necessary that * should be used in it? If we access the referent of the pointer in some other way, can it be considered as dereferencing a pointer or not, like:
...
5
votes
5answers
236 views
Difference between these two statements? - C++
I'm a programming student trying to better understand pointers, one of the things I learned is that you can set a pointer to NULL. My question is, what's the difference between these two statements? ...
4
votes
3answers
89 views
Understanding Pointer-to-Member operators
I copied this program from a c++ practice book. What's going on behind the scenes?
The expected output is:
sum=30 sum=70
#include<iostream>
using namespace std;
class M
{
int x;
...
4
votes
3answers
168 views
C++: Why does casting as a pointer and then dereferencing work?
Recently I have been working on sockets in C++ and I have come across this:
*(struct in_addr*)&serv_addr.sin_addr.s_addr = *(struct in_addr *)server->h_addr;
While this does do what I want ...
4
votes
6answers
132 views
Dereferencing the integer value of a for loop in java
I just figured out that when I do this in Java:
for(int x = 0; x < 3; x++)
{
String bla = "bla";
bla += x.toString();
}
It (Netbeans in this case) will tell me I can not dereference my x ...
4
votes
4answers
216 views
At what point does dereferencing the null pointer become undefined behavior?
If I don't actually access the dereferenced "object", is dereferencing the null pointer still undefined?
int* p = 0;
int& r = *p; // undefined?
int* q = &*p; // undefined?
A slightly ...
4
votes
3answers
270 views
Difference between pointer to pointer and pointer to array?
people.
Given that the name of an array is actually a pointer to the first element of an array, the following code:
#include <stdio.h>
int main(void)
{
int a[3] = {0, 1, 2};
int *p;
...
4
votes
2answers
117 views
Can I avoid referencing + dereferencing the hash returned from a map operation?
I've got an array of hashes. I want the a list of the values in a key of those hashes based on the uniqueness of another key.
my @obs = ({
value => 'three',
id => 3
},{
value => ...
4
votes
1answer
119 views
In PHP, is it a problem to call a static class function using the -> dereferencer
I am using PHP 5.2
I have the following code:
class MyClass {
public function __construct() {}
public static function stuff() {
echo 'This is static! <br />';
}
}
...
4
votes
7answers
542 views
C++ beginner question: dereference vs multiply
Just getting into C++. I'm getting constantly thrown off track when I see the symbol for multiply (*) being used to denote the dereferencing of a variable
for example:
unsigned char * pixels = ...
4
votes
1answer
237 views
Pointer to an Element of a Vector
If I have a pointer that is pointing to an element in a vector, say element 2, and then that element gets swapped with element 4 of the same vector. Is the pointer now pointing to element 2, element ...
4
votes
5answers
12k views
C programming: Dereferencing pointer to incomplete type error
I am pretty rusty at C, and I'm getting a dereferencing error. Hopefully someone can help me with this? ^_^
I have a struct defined as:
struct {
char name[32];
int size;
int start;
int ...
4
votes
4answers
3k views
How do I dereference a Perl hash reference that's been passed to a subroutine?
I'm still trying to sort out my hash dereferencing. My current problem is I am now passing a hashref to a sub, and I want to dereference it within that sub. But I'm not finding the correct ...
4
votes
2answers
291 views
Dereference arbitrary memory location in C
I'm trying to debug a program I've written. According to the debugger a particular void * holds the value 0x804b008. I'd like to be able to dereference this value (cast it to an int * and get it's ...
4
votes
9answers
4k views
C++ Best way to check if an iterator is valid
Another newbie question:
Is there any way to check if a iterator (whether it is from a vector, a list, a deque...) is (still) dereferencable, i.e has not been invalidated ? If so, which is the best ...
4
votes
2answers
3k views
C++ dereference vector pointer to access element
If i have in C++ a pointer to a vector:
vector<int>* vecPtr;
And i'd like to access an element of the vector, then i can do this by dereferncing the vector:
int a = (*vecPtr)[i];
but will ...
4
votes
2answers
139 views
Are @{$list_ref} and @$list_ref equivalent in Perl?
I am new to Perl and am curious whether @{$list_ref} and @$list_ref are perfectly equivalent.
They seem to be interchangeable, but I am nervous that there is something subtle going on that I may be ...
3
votes
4answers
57 views
Using pointers to access elements of a QVector
I have trouble with pointers and references to doubles.
I want to access elements in QVector by names. The vector contains doubles:
QVector<double> properties;
properties.append(28.0);
...
3
votes
3answers
107 views
Perl : Dereference between @_ and $_
I have a question with the following Code:
#!/usr/bin/perl
use strict;
use warnings;
my %dmax=("dad" => "aaa","asd" => "bbb");
my %dmin=("dad" => "ccc","asd" => "ddd");
...
3
votes
1answer
77 views
Operator precedence in `copy` implementation example
I read a few lines of code here where it looks to me like there should be some parentheses.
template<class InputIterator, class OutputIterator>
OutputIterator copy ( InputIterator first, ...
3
votes
7answers
139 views
Difference between object->function() and object.function() in C++
Can anyone explain the different between doing something like:
a->height();
and
a.height();
Is there actually a difference?
3
votes
4answers
744 views
How to fix the Findbugs issue “Null value is guaranteed to be dereferenced” NP_GUARANTEED_DEREF
Hi I have got some code that is reported as having the NP_GUARANTEED_DEREF issue by Findbugs.
Now looking at my code I don't quite understand what is wrong with it, can anyone suggest what the problem ...
3
votes
2answers
828 views
Pointer Arithmetic: ++*ptr or *ptr++?
I am learning C language and quite confused the differences between ++*ptr and *ptr++.
for example:
int x = 19;
int *ptr = &x;
I know ++*ptr and *ptr++ produce different results but I am not ...
3
votes
4answers
151 views
Is there a way to pre-emptively avoid a segfault?
Here's the situation:
I'm analysing a programs' interaction with a driver by using an LD_PRELOADed module that hooks the ioctl() system call. The system I'm working with (embedded Linux 2.6.18 ...
3
votes
5answers
547 views
C structure pointer dereferencing speed
I have a question regarding the speed of pointer dereferencing. I have a structure like so:
typedef struct _TD_RECT TD_RECT;
struct _TD_RECT {
double left;
double top;
double right;
double ...
3
votes
4answers
3k views
Change the values within NSArray by dereferencing?
I've come across a problem related to pointers within arrays in objective-c.
What I'm trying to do is take the pointers within an NSArray, pass them to a method, and then assign the returned value ...
2
votes
1answer
21 views
How to “dereference” a string to a git sha1 hash?
How do you get the sha1 hash for references like HEAD, HEAD^^^, HEAD~8?
I know I can hack up git show to get what I want, but it spits out a bunch of other stuff I don't want. Eg.
git show HEAD^^ ...
2
votes
5answers
87 views
How to check if allocated memory is initialized or not
I am exposed to the pointer int* i, of which I only know its memory is allocated but am not sure it has been initialized to some integer or not.
If I try to deference it, what would happen? In other ...
2
votes
2answers
64 views
What's the use of pointer-casting a dereferenced pointer?
This question is about code explanation, not code debugging. The code I'm using works.
I'm using a public code and I was curious to look at one of their "grow array" template, which looks like this:
...
2
votes
0answers
34 views
Can TAR both record symbolic links and the files/directories they reference?
The Tar command has an -h flag to follow symbolic links instead of recording the symbolic links. Is it possible to have both the symbolic links and what they point to in the archive? Can this be ...
2
votes
2answers
100 views
Perl referencing and deferencing hash values when passing to subroutine?
I've been banging my head over this issue for about 5 hours now, I'm really frustrated and need some assistance.
I'm writing a Perl script that pulls jobs out of a MySQL table and then preforms ...
2
votes
4answers
177 views
Dereferencing pointer to array of void
I am attempting to learn more about C and its arcane hidden powers, and I attempted to make a sample struct containing a pointer to a void, intended to use as array.
EDIT: Important note: This is for ...
2
votes
3answers
143 views
I can't seem to dereference an array correctly
I'm not very adept at perl, but I need to be able to do a sort on a multi-dimension array. I've been playing with some test code to try and get a better grasp on the concept, and I think I'm getting ...
2
votes
1answer
35 views
VSH: Performance impact of With statement when referencing object instance variables and properties?
Do you guys know how much of an impact a With statement for object instances has when accessing an object instance's attributes and properties? How "expensive" are fully qualified object references?
...
2
votes
7answers
168 views
Compiler does not warn when dereferencing nullptr
This:
int* p = nullptr;
auto tmp = *p;
doesn't cause neither gcc 4.6 nor VS2010 sp1 to issue at least a warning. Is there any option in any of those compilers to make them issue a warning in ...
2
votes
1answer
214 views
Oracle PL/SQL: How to DEREF from a VARRAY of REFs?
I'm new to Oracle Objects and I have a problem. I don't know how to dereference an item from a VARRAY of REFs. Below is some source code that reproduces the problem that I have.
The error is: ...
2
votes
3answers
131 views
C++: How do I dereference multiple characters from a character pointer in memory using the namelength
Here is the code:
errorLog.OutputSuccess("Filename reference: %c", *t_current_node->filename);
It of course only outputs the first character. If I add something like ->filename[nameLen] where ...
2
votes
1answer
93 views
Why is there no error in PHP if you try to use brackets to get the value of a key on a NULL?
I tried the following code in both facebook's phpsh and the standard crappy php -a abomination for a repl:
$a = NULL;
echo $a['foobar'];
To my regret (I wouldn't call it surprise or disappointment ...
2
votes
3answers
194 views
Problems with dereferencing a pointer (and returning it)
here I have a function that creates a string, assigns it to a string pointer and returns it. I tried returning a regular string and it worked fine, but then when when I integrated the pointers and de ...
2
votes
3answers
451 views
Problem dereferencing char pointer in C++
I have a small school assignment. My output is not correct. Can you see if I'm doing anything wrong?
//1. Create a char pointer named cp
char *cp;
//2. Dynamically allocate a char and store its ...