Tagged Questions
The addressof tag has no wiki summary.
5
votes
5answers
248 views
“Address of” (&) an array / address of being ignored be gcc?
I am a teaching assistant of a introductory programming course, and some students made this type of error:
char name[20];
scanf("%s",&name);
which is not surprising as they are learning... What ...
4
votes
4answers
2k views
“ addressof ” VB6 to VB.NET
I´m having some problem to convert my VB6 project to VB.NET
I don't understand how this "AddressOf" function should be in VB.NET
My VB6 code:
Declare Function MP4_ClientStart Lib "hikclient.dll" _
...
3
votes
4answers
182 views
Why would anyone want to overload the & (address-of) operator? [closed]
Possible Duplicate:
What legitimate reasons exist to overload the unary operator& ?
I just read this question, and I can't help but wonder:
Why would anyone possibly want to overload ...
3
votes
4answers
198 views
Whats the difference between Reference and Pointer return types in C++
If I were to create a simple object in C++, what is the difference between returning an address of the member vs. returning a pointer. As far as I'm aware, C++ doesn't have automatic garbage ...
3
votes
5answers
1k views
What's the ampersand for when used after class name like ostream& operator <<(…)?
I know about all about pointers and the ampersand means "address of" but what's it mean in this situation?
Also, when overloading operators, why is it common declare the parameters with const?
3
votes
7answers
525 views
Why is the following C code illegal?
Consider a typical environment, why is the following code illegal in C?
{
int x;
&x = (int*) malloc(3*sizeof(int));
...
}
1
vote
3answers
67 views
Converting from C# to VB, Event Handler
I am trying to convert this code written in C# to VB:
// Initialize the Message Broker Events
(Application.Current as App).MessageBroker.MessageReceived += new ...
1
vote
0answers
40 views
overloaded address-of operator. How do I know object's adress [closed]
Possible Duplicate:
Overloading unary operator &
class A
{
public:
A* operator&()
{
return NULL;
}
};
int main()
{
A obj;
A* ptr=&obj;//ptr=NULL
...
1
vote
2answers
214 views
AddressOf Visual Basic .net
I have buttons generated through code (dynamically). I have to associate an event (the same) to them. I use AddHandler button.click, AddressOf mysub.
The issue is that mysub gets a string ...
1
vote
6answers
343 views
Why scanf must take the address of operator
As the title says, I always wonder why scanf must take the address of operator (&).
1
vote
5answers
6k views
AddressOf alternative in C#
Could anyboby help me with the alternative solution in C# regarding AddressOf operator in VB6? AddressOf returns a long value. What way can I get the output in C#?
0
votes
4answers
87 views
apparent discrepancy with sizeof and addressof
sizeof(long) returns 8 bytes but the &along (address of a long) is 12 hex digits (48-bits) or 6 bytes. On OS X 64-bit compiled with clang. Is there a discrepancy here or is this a genuine 64-bit ...
0
votes
1answer
57 views
Passing static method as argument, no address-of operator required?
class ThreadWorker
{
public:
ThreadWorker(void);
virtual ~ThreadWorker(void);
static void DoSomething();
};
int main()
{
boost::thread thread1(ThreadWorker::DoSomething);
...
0
votes
5answers
131 views
VB.net to C Sharp Equivalent of “AddressOf”
I am trying to implement this example
http://blog.evonet.com.au/post/Gridview-with-highlighted-search-results.aspx
but the only problem I am facing is the AddressOf keyword of VB.net which I am ...
0
votes
2answers
166 views
How fix AddressOf requires a relaxed conversation to the delegate error
Sorry, this is a mix of C# and VB.Net
I have a C# class with with 2 delegates:
public delegate string GetSettingDelegate(string key);
public event GetSettingDelegate GetSettingEvent;
public ...
0
votes
4answers
69 views
What is the difference between mymethod(i) and mymethod(&i) in C?
I was wondering what the difference in is between calling a method like :
int x;
mymethod(x);
and
mymethod(&x);
If anyone has a link to a good tutorial/explanation about the difference ...
0
votes
2answers
69 views
How to best debug the creation of unwanted threads in ASP.NET web application
After an IISRESET on my public facing webserver, the initialization of my app seems correct. That is, in the Application_Start event I launch a new "email" thread whose purpose is to sleep until the ...
0
votes
1answer
84 views
VB.NET - AddressOf returns Nothing?
Short question: can VB.NET operator AddressOf return Nothing in any case?
0
votes
2answers
106 views
What is the difference between AddressOf in c# and pointer in c++
I am confused in AddressOf in c# and pointer in c++ ?
Am i right that Addressof is manage execution and pointer is unmanage execution or something else?
0
votes
1answer
724 views
dynamic database driven menus in VB.Net
I'm trying to construct a database driven VB.Net app that pulls a list of registered accounts from a database and displays the usernames of throes accounts in menu, so the user can select one and a ...