The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
51 views

Why is scope resolution not working on overridden variable?

When I looked at the following code sample, I thought d.B::num was the same as b.num but it isn't. It appears to be a different variable that has its own address. When I click on the run button, I see ...
11
votes
4answers
165 views

Difference between this->field and Class::field?

I'm wondering something in C++. Admitting the following code: int bar; class Foo { public: Foo(); private: int bar; }; Inside my class, is there any difference between this->bar and ...
0
votes
1answer
58 views

rails 3 using folder name as namspace throws uninitialized constant error

I'm trying to upgrade an app from rails 2.3 to 3.0 and it has a file app/utility/interface/import/import_statistics_manager.rb which contains class ...
1
vote
2answers
87 views

Error with resolution operator while referencing model type depending on dynamic variable (PHP 5.2)

Background Information: I am trying to simplify the structure of my Yii app, by moving a common function from child classes into the base class they are extending from. I moved the loadModel($id) ...
2
votes
2answers
157 views

What does ::new mean?

When examining the MS directX 11 DXUT example, the following code appeared: template<typename TYPE> HRESULT CGrowableArray <TYPE>::SetSize( int nNewMaxSize ) { int nOldSize = m_nSize; ...
0
votes
3answers
117 views

how to call parent class method in php

This is the working code, but i want to know without using another object(commented $foo) how could i use printItem() method of class Foo using the $bar object. New to oop programming concept so may ...
0
votes
5answers
112 views

Call private method from inherited class

I want to implement a hook-system in my simple ORM, in PHP: class Record { public function save() { if (method_exists($this,"before_save")) { $this->before_save(); } ...
2
votes
1answer
130 views

Get Classname of Inherited Class when using Scope Resolution Operator (::) [duplicate]

Possible Duplicate: Functionality of PHP get_class For a small ORM-ish class-set, I have the following: class Record { //Implementation is simplified, details out of scope for this ...
7
votes
1answer
125 views

C++ global namespace access from within another namespace

In the C++ code below, foobar is defined first for a single double parameter, and then again for a single parameter of type Foo. Both are defined within the global namespace. Within the one ...
0
votes
5answers
137 views

PHP OOP different ways to access methods

I have seen that there are two different ways to access methods within a class. Is there any advantages and disadvantages? Why use one not the other? $a = new A(); $a->foo(); A::foo();
2
votes
1answer
54 views

APIs: Dependency injected or Scope Resolution Operator?

I didn't find a similar question, so I apologize if it already exists. I'm writing a rather large system and I really want to push myself in terms of making a code where most experienced programmers ...
1
vote
3answers
480 views

what does the scope resolution operator used in a class name mean

I came across this code. class SomeClass::OtherClass : public BaseClass { // stuff in here } SomeClass is a class, so maybe OtherClass is a class that exists inside the scope of SomeClass? I've ...
2
votes
1answer
428 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
91 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
250 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 ...
2
votes
2answers
111 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 ...
0
votes
1answer
282 views

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

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 ...
3
votes
6answers
260 views

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

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 ...
8
votes
1answer
102 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'; } } ...
12
votes
1answer
468 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 ...
6
votes
4answers
402 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 ...
2
votes
2answers
266 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 ...
6
votes
2answers
2k 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?
0
votes
1answer
1k 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 ...
11
votes
2answers
796 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; ...
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 ...