Tagged Questions
The address tag has no wiki summary.
70
votes
7answers
7k views
How can I reliably get the address of an object?
Consider the following program:
struct ghost
{
// ghosts like to pretend that they don't exist
ghost* operator&() const volatile { return 0; }
};
int main()
{
ghost clyde;
ghost* ...
37
votes
5answers
948 views
How can a non-assigned string in Python have an address in memory?
Can someone explain this to me? So I've been playing with the id() command in python and came across this:
>>> id('cat')
5181152
>>> a = 'cat'
>>> b = 'cat'
>>> ...
25
votes
11answers
4k views
Is there common street addresses database design for all addresses of the world?
I am a programmer and to be honest don't know street address structures of the world, just how in my country is structured :) so which is the best and common database design for storing street ...
24
votes
11answers
4k views
Best practices for storing postal addresses in a database (RDBMS)?
Are there any good references for best practices for storing postal addresses in an RDBMS? It seems there are lots of tradeoffs that can be made and lots of pros and cons to each to be evaluated -- ...
14
votes
8answers
2k views
Is 0.0.0.0 a valid IP address?
Is 0.0.0.0 a valid IP address? I want my program to be able to store it as an indication that no address is in use, but this won't work if it's actually valid.
13
votes
8answers
15k views
What characters are allowed in email address?
I'm not asking about full email validation.
I just want to know what are allowed characters in user-name and server parts of email address. This may be oversimplified, maybe email adresses can take ...
12
votes
2answers
205 views
Why is the address of this volatile variable always at 1?
I wanted to inspect the address of my variable
volatile int clock;
cout << &clock;
But it always says that x is at address 1. Am i doing something wrong??
11
votes
3answers
203 views
C standard addressing simplification inconsistency
Section §6.5.3.2 "Address and indirection operators" ¶3 says (relevant section only):
The unary & operator returns the address of its operand. ...
If the operand is the result of a unary * ...
10
votes
5answers
27k views
Android: Reverse geocoding - getFromLocation
I am trying to get an address based on the long/lat. it appears that something like this should work?
Geocoder myLocation = Geocoder(Locale.getDefault());
List myList = ...
8
votes
4answers
159 views
Is the address of a reference to a dereferenced pointer the same as the address of the pointer?
In C++, is the address of a reference to a dereferenced pointer guaranteed to be the same as the address of the pointer?
Or, written in code, is the following assertion guaranteed to always hold ...
8
votes
9answers
2k views
C Programming: address of a label
I know everyone hates gotos. In my code, for reasons I have considered and am comfortable with, they provide an effective solution (ie I'm not looking for "don't do that" as an answer, I understand ...
8
votes
4answers
987 views
Is an autocomplete text box for entering addresses a good idea?
Entering my address via a traditional form drives me crazy:
Why do I have to enter my city, state, and zip code when my city and state can be inferred from my zip code?
Choosing your state from a ...
8
votes
9answers
1k views
Is it a good idea to use an integer column for storing US ZIP codes in a database?
From first glance, it would appear I have two basic choices for storing ZIP codes in a database table:
Text (probably most common), i.e. char(5) or varchar(9) to support +4 extension
Numeric, i.e. ...
8
votes
11answers
4k views
What is the ultimate postal code and zip regex?
I'm looking for the ultimate postal code and zip code regex. I'm looking for something that will cover most (hopefully all) of the world.
7
votes
3answers
138 views
Guarantees on address of baseclass in C++?
In C struct's, I'm guaranteed that:
struct Foo { ... };
struct Bar {
Foo foo;
...
}
Bar bar;
assert(&bar == &(bar.foo));
Now, in C++, if I have:
class Foo { ... };
class Bar: public ...
7
votes
6answers
1k views
Why does Windows reserve 1Gb (or 2 Gb) for its system address space?
It's a known fact that Windows applications usually have 2Gb of private addess space on a 32bit system. This space can be extended to 3Gb with the /3Gb switch.
The operating system reserves itself ...
7
votes
5answers
11k views
Print the Address a Pointer Contains in C
I want to do something that seems fairly simple... I get results but the problem is, I have no way to know if the results are correct.
I'm working in C and I have two pointers; I want to print the ...
6
votes
4answers
108 views
Address of array
int t[10];
int * u = t;
cout << t << " " << &t << endl;
cout << u << " " << &u << endl;
output:
0045FB88 0045FB88
0045FB88 0045FB7C
The ...
6
votes
3answers
761 views
Double Address Operator? (&&)
I am reading STL source codes and I have no idea what && address operator is supposed to do. Here is a code example from stl_vector.h.
vector&
operator=(vector&& __x) // <-- ...
6
votes
4answers
109 views
What is the best way to deal with address inputs that can be from multiple countries?
Most of my websites in the past have been rather limited to the United States when it came to displaying addresses. On a project I'm working on right now, however, users can add events from all over ...
6
votes
3answers
2k views
ELF binary entry point
why is the entry point in each ELF binary something starting with 0x80xxxxx?
Why doesn't the program start at (virtual) address 0x0?
When executed, program will start running from virtual address ...
6
votes
5answers
3k views
Picking the most accurate geocode
I'm using http://maps.google.com/maps/geo? web service to geocode some addresses.
The problem I have is that a fuller address doesn't necessarily give a more accurate geocode.
e.g passing in ...
6
votes
3answers
913 views
list of email addresses that can be used to test a javascript validation script
Does anyone have a list of email addresses that I can use to test my JS address validation script? I'm looking for as complete of a list as is reasonable to test the most common edge cases, if not ...
5
votes
1answer
176 views
How to read data from absolute address in delphi XE2
Let's say that I want to read from absolute address gs:$30 in 64bit mode, so the asm code looks something like:
asm
mov rax, gs:[$30]
end;
...and compiler translate this code to...
65 48 8B ...
5
votes
6answers
193 views
Question about class variable declarations in C++
I have a class to represent a 3D vector of floats:
class Vector3D
{
public:
float x, y, z;
float * const data;
Vector3D() : x(0.0), y(0.0), z(0.0), data(&x) {}
}
My question ...
5
votes
6answers
185 views
C++: &a[2] - &a[1] ==?
a is array of integers, if I try to subtract the address value of &a[2] - &a[1] == ?
what should the result be 4 or 1 ?
EDIT: see 4th comment on top answer here why he says 1 ?? this is why ...
5
votes
6answers
497 views
Why is taking the address of a temporary illegal?
I know that the code written below is illegal
void doSomething(std::string *s){}
int main()
{
doSomething(&std::string("Hello World"));
return 0;
}
The reason is that we are not ...
5
votes
4answers
1k views
How do game trainers change an address in memory that's dynamic?
Lets assume I am a game and I have a global int* that contains my health. A game trainer's job is to modify this value to whatever in order to achieve god mode. I've looked up tutorials on game ...
5
votes
2answers
456 views
Java Compare Addresses
Does anyone know a library to compare addresses in Java ?
Something that would give equality on addresses, written in different ways.
For example, it should recognize that
"22 Acacia Avenue" and ...
5
votes
2answers
803 views
Extracting bits
In C,
I have a 32bit word representing an address (and I have it stored in a unsigned long, hope thats ok). Now from what I gather, part of an address contains the page number and the other part ...
5
votes
5answers
2k views
Is there pseudocode for UK address or phone number validation?
Do you have pseudocode for field validation of the following items in the UK? I am from the USA, so I only know the ones in the USA right now.
Address Line 1
Phone Number
Mobile Number (in case they ...
4
votes
3answers
44 views
C/C++ Linux MAC Address of all interfaces
I am using the following code to retrieve all MAC addresses for current computer:
ifreq ifr;
ifconf ifc;
char buf[1024];
int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
if (sock == -1) { ... };
...
4
votes
4answers
157 views
Is C/C++ pointer keeps absolute memory address, or relative to application, or relative to module?
For example, if I declare a function in the main application, and a pass a pointer to it, from a dynamically loaded library (via dlopen under Linux or LoadLibrary under Windows) using a gotten symbol ...
4
votes
2answers
119 views
Getting the address of a pointer
My apologies, I know there are a million questions on pointers, arrays etc. although as basic as this is I just can't seem to find anything pointing (ha ha!) to an answer.
I've got a pointer that is ...
4
votes
2answers
89 views
Weird behavior of parent-child-child threaded program
I have a doubt regarding the program copy-pasted below. I am explaining my understanding of the program here: In this program, the parent creates a child and waits for it complete. Then, the child ...
4
votes
2answers
476 views
Getting pinpoint address of marker - Google Maps V3
I'm using Google Maps V3 API. Whenever a user drops a pin on a street (or perhaps a few metres/yards away from a street) it should get the address components which I use to retrieve from the dropped ...
4
votes
5answers
550 views
I need an address matching algorithm
I have looked around online for this but haven't found much really. Basically I need to compare a bunch of addresses to see if they match. The addresses could be written in all different ways. For ...
4
votes
3answers
190 views
Assign a value to a specific address
It is an interview question, which I came across at a book for interviews, and later in an interview.
The question is
How to assign value (say 0) to an address (say 0x12345678).
My best try for ...
4
votes
4answers
281 views
Pointers to elements of STL containers
Given an STL container (you may also take boost::unordered_map and boost::multi_index_container into account) that is non-contiguous, is it guaranteed that the memory addresses of the elements inside ...
4
votes
2answers
5k views
Get current location address for android app
I do not need to display a map. However, I need to use the gps/3g network to locate my current positions ADDRESS (not long and lat) this will then be added to a automated sms response to inform a ...
4
votes
1answer
148 views
Weighted disjunction in Perl Regular Expressions?
I am fairly experienced with regular expressions, but I am having some difficulty with a current application involving disjunction.
My situation is this: I need to separate an address into its ...
4
votes
3answers
130 views
What HTML tags are there for address information?
What address related tags are there for address and formatting and marking my address information in my webpages? I'm looking for XHTML or HTML5 compliant tags.
4
votes
2answers
1k views
EXE or DLL Image base address
Is there a way in C++/windows to get the exe/DLL image base address?
thanks :)
4
votes
4answers
604 views
How to check if an address is a business or residential address
I have a dataset that contains many addresses (60,000-ish entries). I want to classify these addresses into either residential or business addresses.
Does anyone know a good API/Service to get ...
4
votes
1answer
1k views
How could I change window's location without reloading and # hack?
At first I thought that hash hack is a requirement, however judging from the recent updates from facebook, I am thinking otherwise.
The original hash hack (I am not sure if this is the correct term) ...
4
votes
2answers
725 views
Remove old parameter in URL (PHP)
I'm using PHP to create a pagination for a table.
I'm using the following code to create the pagination link
<a class='page-numbers' href='$href&pagenum=$i'>$i</a>
With $href
$href ...
4
votes
2answers
289 views
memory address literal
Given a literal memory address in hexadecimal format, how can I create a pointer in C that addresses this memory location?
Memory addresses on my platform (IBM iSeries) are 128bits. C type long long ...
4
votes
2answers
210 views
nHibernate mapping for entity to multiple different parent entities (eg Addres -> Firm, Addres -> Client)
Can someone help me with the best way to map the following situation in fluent nHibernate? The Address class is used in both Client and Company. How can I store it most efficient in SQL? And what ...
4
votes
3answers
741 views
For buffer overflows, what is the stack address when using pthreads?
I'm taking a class in computer security and there is an extra credit assignment to insert executable code into a buffer overflow. I have the c source code for the target program I'm trying to ...
4
votes
2answers
642 views
how to get struct's start address from its member's address
In C language, how to get struct's start address from its member's address?
struct type1 {
//...
int member1;
//...
};
struct type1 obj1;
And ptr1 is the address of member member1 in ...