Tagged Questions
The double-underscore tag has no wiki summary.
47
votes
7answers
10k views
The meaning of a single- and a double-underscore before an object name in Python
I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and ...
27
votes
7answers
10k views
Why do people use __(double underscore) so much in C++
I was having a look through some open source C++ code and notice a lot of double under scores where used in the code, mainly at the start of variable names.
return __CYGWIN__;
Just wondering is ...
8
votes
5answers
2k views
Double Underscore in PHP?
What does the double underscores in these lines of PHP code mean?
$WPLD_Trans['Yes']=__('Yes',$WPLD_Domain);
$WPLD_Trans['No']=__('No',$WPLD_Domain);
6
votes
4answers
5k views
What does double underscore ( __const) mean in C?
extern int ether_hostton (__const char *__hostname, struct ether_addr *__addr)
__THROW;
I found the above function definition in /usr/include/netinet/ether.h on a Linux box.
Can someone explain ...
6
votes
5answers
771 views
Python classes special methods
Could someone please give me a complete list of those special methods that you can put in classes, e.g. a couple are __len__ and __add__, but what are the rest? Thanks.
5
votes
4answers
2k views
What is this double underscore in Cocoa
The single underscore in Objective-C is apparently reserved for Apple's "internal" use (and was available for use with private instance variables prior to Apple's claim). But why would they use a ...
5
votes
6answers
4k views
Using '__progname' instead of argv[0]
In the C / Unix environment I work in, I see some developers using __progname instead of argv[0] for usage() messages. Is there some advantage to this? What's the difference between __progname and ...
5
votes
7answers
1k views
What is a double underscore in Perl?
I'm trying to understand someone else's Perl code without knowing much Perl myself. I would appreciate your help.
I've encountered a Perl function along these lines:
...
4
votes
3answers
130 views
Python: Why do some functions have underscores “__” before and after the function name?
This seems to occur a lot, and was wondering if this was a requirement in the Python languages, or merely a matter of convention.
Also, could someone name and explain which functions tend to have the ...
4
votes
6answers
1k views
Why does python use two underscores for certain things?
I'm fairly new to actual programming languages, and Python is my first one. I know my way around Linux a bit, enough to get a summer job with it (I'm still in high school), and on the job, I have a ...
3
votes
2answers
204 views
Why some attribute names start with double underscore in JavaScript?
I see some attributes of some objects in JavaScript start with double underscore. For example, something like __defineGetter__ or __defineSetter__ or __proto__.
Is it a convention defined ECMAScript ...
3
votes
6answers
196 views
What does underscoring methods connote?
I am relatively new to the Python language and encountered this in doing the following:
help(list)
Here is what I encountered:
__add__(...)
| x.__add__(y) <==> x+y
|
| ...
3
votes
4answers
3k views
Underscore in php function
What does it mean when a PHP function name begins with an underscore?
for example: __construct()
I know what the construct means but I've seen other places where the function begins with an ...
2
votes
2answers
3k views
Purpose of Python's __repr__
def __repr__(self):
return '<%s %s (%s:%s) %s>' % (
self.__class__.__name__, self.urlconf_name, self.app_name,
self.namespace, self.regex.pattern)
What is the significance/purpose of ...