Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
2k views

Level of Indirection solves every Problem

What does the quote "Level of Indirection solves every Problem" mean in Computer Science?
4
votes
8answers
93 views

How to properly declare a pointer with the indirection operator set correctly in C [closed]

When declaring pointers in C, I see 2 variants: Variant A: int* ptr; Variant B: int *ptr; In A, the indirection operator has been appended to the type. In B, the indirection operator has been ...
4
votes
1answer
765 views

Dynamic constant name in PHP

I am trying to create a constant name dynamically and then get at the value. define( CONSTANT_1 , "Some value" ) ; // try to use it dynamically ... $constant_number = 1 ; $constant_name = ...
4
votes
2answers
2k views

How to overload the indirection operator? (C++)

I'm trying to create an iterator class as a member-class for a list class, and am trying to overload the indirection operator (*) to access the list it's pointing to: template<class T> T ...
2
votes
3answers
93 views

Overloading the indirection operator in c++

my problem is a simple one. I have a class template that holds a pointer to a dynamically allocated type. I want to overload the indirection operator so that referring to the class template instance ...
2
votes
4answers
50 views

bash: indirect expansion, please explain?

I'm reading "Bash Guide for Beginners", it says: "If the first character of "PARAMETER" is an exclamation point, Bash uses the value of the variable formed from the rest of "PARAMETER" as the name of ...
2
votes
2answers
128 views

How do I use a method to change a pointer?

I'm working on an iPhone app using objective C. I've got class A, which creates an NSMutableArray pointer called "list". But, in class A, I never create an object for it to point to. Instead, I ...
2
votes
5answers
210 views

Why is my multi-dimensional dynamic allocation in C not working?

I have been trying to figure out the problem with my allocation and use of a multidimensional dynamically allocated array in C. I'd really appreciate any help. I've tried two approaches. The first: ...
2
votes
4answers
412 views

Have you come across any reason for three levels of indirection?

Just flicking through one of my favourite books (Ellen Ullman's The Bug) and there is a small bit where one programmer confronts another over three levels of indirection: ***object_array = ...
1
vote
2answers
147 views

Delphi - Using different TTable and TQuery as one object

Delphi 2010, Win7 - 64 I am writing an app which involves connecting to different databases. I use two different vendors for database access. I use AnyDAC, by DA-Soft, which allows me to connect to ...
1
vote
1answer
67 views

How to pass (and set) non-objects by indirection?

NSError objects are frequently used like this (taken from this previous question): - (id)doStuff:(id)withAnotherObjc error:(NSError **)error; I want to achieve something similar with BOOL ...
1
vote
1answer
81 views

Problem with multiple levels of indirection

When allocating and then attempting to access an array of pointers to pointers: void tester(char ***p) { int i; char **pp; pp = *p; pp = calloc(10, sizeof(*pp)); for (i = 0; i ...
1
vote
1answer
37 views

Simple indirection approach for linking to images

I have a web site which hosts images are shared and linked directly. I've read somewhere that this is a bad idea. How could I apply simple indirection approach while perhaps keeping existing links up ...
1
vote
1answer
140 views

PHP: limitation of variable variables

In php I can do this: $class = 'Notes'; echo $class::message(); but it seems that from within a method, I can't do this: echo ($this->myClass)::message(); and also cannot do this: echo ...
1
vote
4answers
285 views

TOUGH: Dealing with deeply nested pointers in C++

I define this structure: struct s_molecule { std::string res_name; std::vector<t_particle> my_particles; std::vector<t_bond> my_bonds; std::vector<t_angle> my_angles; ...
1
vote
3answers
111 views

Purpose of dereferencing a pointer as a parameter in C

I recently came along this line of code: CustomData_em_free_block(&em->vdata, &eve->data); And I thought, isn't: a->b just syntactic sugar for: (*a).b With that in mind, this ...
1
vote
1answer
530 views

C# P/Invoke: How to achieve double indirection for a field of a structured parameter

I am calling into a native dll from C#. For the specific function in question, one of the parameters I need is a structure which contains a doubly-indirect field (pointer to a pointer). For example, ...
1
vote
2answers
175 views

Include indirection on Visual C++

Let's say we have an application that will need Boost to compile. Boost being an external library, updated regularly, and our application having multiple binaries and multiple versions ("multiple" as ...
0
votes
2answers
68 views

C++ Indirection in accessing members from another member

Given the following example code: class Room { Room() : switch(*this) { } Lamp lamp; Switch switch; void TurnOn() { lamp.TurnOn(); } } class Switch { Switch(Room& room) : ...
0
votes
1answer
42 views

Any concrete benefits of extra level of indirection

Please consider the Javascript code excerpt at the bottom. Roughly it consists of two modules, one for handling messages. What is the benefit of the filtersUpdateSuccess method within the messages ...
0
votes
1answer
54 views

void** parameter called with a fixed array value

I have a fixed-size array declared: int vals[25]; And I'd like to send the array to a function which will assign the values of vals: bool FetchValueArray(char* source, char* name, char* ...
0
votes
1answer
39 views

Does xlwt module support INDIRECT?

I used the following codes, but it doesn't work. I checked the xls. The formula is filled in correctly, but remains as a text entry. If to press ENTER to active this cell, it works. sheet1.write(1, ...
0
votes
4answers
147 views

Monitor image access AND/OR prevent direct access

I want users to see an image as part of a web page but I want to avoid them accessing a image directly. This could, say, give clues in the URL about what user they're linked to (a flaw I've seen in ...
0
votes
2answers
131 views

Invalid Indirection in C++

This is my program. I dont know what to do next because I dont know what is invalid indirection. The error is found from line 46 to 52. #include<iostream.h> #include<conio.h> ...
0
votes
1answer
57 views

Solaris 11 express and indirection

I am trying to use bash indirection in Solaris 11 express to change the password for a user. The code I am using is $ passwd testuser << MARKER > testpassword > testpassword > MARKER ...
0
votes
1answer
281 views

Can gcc inline an indirect function call through a constant array of function pointers?

Let's say we have this code: inline int func_2 (int a, int b) { return time() + a * b; } int main (void) { int x = (int (*[])(int, int)){func_1, func_2, func_3}[1](6, 7); } Can gcc be somehow ...
0
votes
1answer
741 views

How to re-attach an object to EclipseLink session after deserialization

Here's a simple POC: public void main(String[] args) { final String FILE_NAME = "c:/poc.ser"; try { HotelJdo hotel = HotelJdoFinder.findById(430); ObjectOutputStream oos = new ...
0
votes
3answers
292 views

Direct invocation vs indirect invocation in C

I am new to C and I was reading about how pointers "point" to the address of another variable. So I have tried indirect invocation and direct invocation and received the same results (as any C/C++ ...
0
votes
6answers
230 views

Accessing variables from a struct

How can we access variables of a structure? I have a struct: typedef struct { unsigned short a; unsigned shout b; } Display; and in my other class I have a method: int NewMethod(Display ...
-1
votes
4answers
170 views

Weird Pointer issue in C++

I'm running into a VERY frustrating pointer issue. I previously posted here: http://stackoverflow.com/questions/3114997/tough-dealing-with-deeply-nested-pointers-in-c But that post got overly long ...