Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
277 views

C++0x decltype and the scope resolution operator

With a class such as Foo: struct Foo { static const int i = 9; }; I find that GCC 4.5 will reject the following Foo f; int x = decltype(f)::i; It will work if I use an intermediate typedef, such ...
8
votes
2answers
422 views

In C++, what is the scope resolution (“order of precedence”) for shadowed variable names?

In C++, what is the scope resolution ("order of precedence") for shadowed variable names? I can't seem to find a concise answer online. For example: #include <iostream> int shadowed = 1; ...
7
votes
1answer
76 views

Multiple paamayim nekudotayims in PHP, why not?

In PHP 5.3.6, I've noticed that the following won't work: class Foo{ public static $class = 'Bar'; } class Bar{ public static function sayHello(){ echo 'Hello World'; } } ...
6
votes
5answers
1k views

C# Default scope resolution

I have inherited a c# class 'Button' (which I can't change) which clashes with the BCL class 'Windows.Forms.Button'. Normally, Id be very happy to go: MyPackage.MyClass.Button; But there are a ...
5
votes
4answers
253 views

What does the “::” mean in “::tolower”?

I've seen code like this: std::string str = "wHatEver"; std::transform(str.begin(), str.end(), str.begin(), ::tolower); And I have a question: what does mean :: before tolower? and std::tolower ...
3
votes
6answers
182 views

Difference between . and :: in C++ for static members? [closed]

Possible Duplicate: When do I use a dot, arrow, or double colon to refer to members of a class in C++? When I try to access my static variable using Class.Variable I get the error that ...
3
votes
2answers
672 views

Scope-resolution operator :: versus member-access operator . in C#

In C#, what's the difference between A::B and A.B? The only difference I've noticed is that only :: can be used with global, but other than that, what's the difference? Why do they both exist?
2
votes
2answers
40 views

Why does a locally scoped variable that hasn't been defined reference the instance variable of the same name?

I came across an odd bug in my code that revealed an interesting behavior of ruby. Hopefully someone can explain why it behaves this way. I had a class with an instance variable @foo and a method ...
2
votes
2answers
162 views

c++ design question try catch

I have the following code in which dbh constructor may throw exception. The question I have is, dbh is declared inside try block. Will it be available after the catch? If yes, are there any other ...
1
vote
1answer
79 views

:: scope resolution operator in front of a template function call in c++

I'm stuck with templates and scope resolution operator. I found these line in a file, I'm not able to figure out why we are using :: in front of a template function call, as of my knowledge we can ...
1
vote
2answers
71 views

Why doesn't scope-resolution work here?

What is the reason why the function bar() can't be overloaded here? namespace foo { void bar(int) { } struct baz { static void bar() { // error C2660: ...
0
votes
2answers
99 views

PHP: Scope Resolution Operator & Overloading perfomance

I have 2 questions: 1) Is the Scope Resolution Operator (::) slow for static access (or slower than -> for an instantiated class)? The name kinda suggests it has to "resolve" a scope so that's ...
0
votes
1answer
94 views

PHP: calling non-static methods with scope resolution operator [closed]

Possible Duplicates: Calling non static method with "::" Does static method in PHP have any difference with non-static method? What is the reason for allowing calling non-static ...
0
votes
0answers
207 views

Boost XML Serialization scope resolution problem (added difficulty: templates…I think)

I was spending my Sunday the best way I know how: playing with C++. Now that my blood pressure is nice and high I figured it was time to ask for help... First code and command, then error. I did ...
0
votes
1answer
449 views

C++ Binary Scope Resolution Operator and Classes

Is there a way to use "block" class scope resolution in C++ so that I don't have to write the same boilerplate code for every function in my class' implementation file. I find it extremely repetitive ...