The tag has no wiki summary.

learn more… | top users | synonyms

-5
votes
1answer
23 views

char* and passing the cointents to a function in 'C' [closed]

Althought I have been around 'C' since 1988 I always get confounded when passing as char* to a function. I have a char* in the main, which is a buffer, and need to pass its contents to the ...
0
votes
2answers
55 views

Illegal indirection in C++ templates

I got a template class and once it gets a string as a T and the other Para* as a T. I have overloaded << for Para. friend ostream& operator<< (ostream &wyjscie, Para const& ...
1
vote
2answers
66 views

Indirection with linq : Change query expression “Select” according users parameters

I use a table "TLanguage" to record lable results of my site. I have 4 columns in this table: French, English, German and Spanish. In a MVC application I use this query: var req = (from TYP in ...
0
votes
2answers
85 views

Dereferencing a double pointer just once?

Hi I have a question about double pointers. For example in this code: int a, b=2; int *iPtr1, **iPtr2; iPtr1 = &a; iPtr2 = &iPtr1; *iPtr1 = b+3; *iPtr2 = iPtr1; On the last line *iPtr2 ...
0
votes
2answers
39 views

Design of a general-purpose handler class with swappable handler code?

I want to write a general-purpose handling class for files. This class is to load a specific handler instance depending on the type of file that's passed to it. One of the methods inside would work ...
13
votes
2answers
181 views

Does C++ Standard description of indirection operator guarantee memory writes are not optimized away?

This is basically a continuation of this question. So far it looks like that if I have a function like this: void SecureZeroMemory( void* ptr, size_t cnt ) { volatile char *vptr = (volatile char ...
2
votes
1answer
73 views

Indirection without using eval

I'm looking for a clean way (without eval command) to do an indirect reference to an array. Here is a more precise description of what I want : function valueof { echo "indirection1 \$$1=${!1}" ...
0
votes
0answers
71 views

Can you use pointer indirection with Objective-C properties? [closed]

(Edit) Sorry, this isn't my best worded question and title. (And perhaps this is more of a C question than Objective-C question.) I will try to be more clear about what I'm trying to do. I want to ...
3
votes
1answer
67 views

What is the cost of pointer indirection versus allocating on the stack?

I have a draw method that will be called repeatedly (every frame...). Inside this method I have a handful of locally defined variables (roughly 20). I am considering putting these inside a structure, ...
0
votes
1answer
81 views

Overloaded 'dereference' or 'member of pointer' operators don't get run when I have a pointer to an object

I have the following code: #include <iostream> struct Base { int i_; }; class El : protected Base { public: int get_i() const { return i_; } void set_i(int i) { i_ = i; } }; ...
0
votes
1answer
62 views

What is the typical level of indirection between a controller and a view in mvc and similar architectures?

So say I make a controller for a main menu 'page', would MainMenu be composed of the individual view elements like labels and buttons directly or would it reference a class such as MainMenuView which ...
4
votes
5answers
233 views

Intuitively explaining pointers and their significance?

I'm having a hard time understanding pointers, particularly function pointers, and I was hoping someone could give me a rundown of exactly what they are and how they should be used in a program. Code ...
3
votes
1answer
338 views

How to iterate over an array using indirect reference?

How can I make this code work? #!/bin/bash ARRAYNAME='FRUITS' FRUITS=( APPLE BANANA ORANGE ) for FRUIT in ${!ARRAYNAME[@]} do echo ${FRUIT} done This code: echo ${!ARRAYNAME[0]} Prints ...
0
votes
2answers
220 views

Can you perform code indirection in .NET?

I remember with InterSystems Cache code, you can use indirection to take a string and turn that into real executable code by preceding the string variable with "@". Can this be done in C#.NET or ...
5
votes
8answers
297 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 ...
2
votes
3answers
916 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 ...
4
votes
4answers
735 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 ...
0
votes
2answers
124 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
102 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 ...
1
vote
2answers
303 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 ...
0
votes
1answer
192 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
95 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, ...
1
vote
1answer
405 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 ...
0
votes
4answers
493 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 ...
1
vote
1answer
125 views

Seg fault when using 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 ...
0
votes
2answers
594 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
155 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 ...
1
vote
1answer
67 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
585 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 ...
2
votes
2answers
227 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 ...
1
vote
1answer
250 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 ...
14
votes
2answers
5k 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 = ...
0
votes
1answer
2k 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 ...
2
votes
5answers
291 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: ...
-1
votes
4answers
210 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 ...
1
vote
4answers
379 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; ...
0
votes
3answers
641 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++ ...
1
vote
3answers
153 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 ...
0
votes
6answers
814 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
vote
1answer
771 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, ...
6
votes
2answers
3k 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 ...
1
vote
2answers
200 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 ...
2
votes
4answers
470 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 = ...
10
votes
4answers
4k views

Level of Indirection solves every Problem

What does the quote "Level of Indirection solves every Problem" mean in Computer Science?