0
votes
1answer
44 views

Private/Protected variable “error: within this context”

I have a class based off of the SFML gamefromscratch.com tutorials, called "VisibleGameObject" Within this class, is a private variable "_sprite", as well as a "getSprite()" function that I tried as ...
-1
votes
0answers
23 views

How to access the value of a private variable on another function?

a = open('expressoes.txt', 'r') pilhaop = [] b = a.readlines() string = [] def posfixa(): j = 0 while j in range(len(b)): fixa = b[j].strip() print fixa ...
0
votes
2answers
73 views

C++ Why I can invoke private virtual function of base class from a drived class?

Herb Sutter's famous article Virtuality, states the following: Guideline #2: Prefer to make virtual functions private. That's easy. This lets the derived classes override the function to ...
0
votes
1answer
34 views

Flash - On Timer Private Function

I am trying to get a timer to work for this game. I get an error at line 36: The private attribute may be used only on class property definitions. Here is the last part of the hw assignment for you ...
0
votes
2answers
52 views

Accessing functions inside a Ruby block

I'm working inside a one-off Ruby script (so not inside an explicitly defined module or class) and I'm having a hard time accessing a function I've defined earlier in the script, from within a .each ...
1
vote
1answer
476 views

C++ friend function not working, private within this context error

I've been doing an exercise for my programming course and the particular one I'm on now is about friend functions/methods/classes. The problem I'm having is that my friend function doesn't seem to be ...
3
votes
7answers
267 views

C++: accessing private fields and function from main

I've programmed only in Java in my career and started using C++ since 10 days, so this question may seem strange to many of you. I have defined the structure of a class in a header file: ...
1
vote
0answers
36 views

Template Class Friend Function of Another Template Class

I have a tree comprised of a pair of template classes, one of which needs access to private members of the other, preferably restricted to only those member functions which actually need access. This ...
4
votes
3answers
455 views

C++: Private virtual functions vs. pure virtual functions [duplicate]

Possible Duplicate: Private virtual method in C++ If I understood correctly from this post (http://stackoverflow.com/questions/2170688/private-virtual-method-in-c), making a virtual ...
18
votes
7answers
2k views

C++: Why must private functions be declared?

Why do classes in C++ have to declare their private functions? Has it actual technical reasons (what is its role at compile time) or is it simply for consistency's sake?
4
votes
5answers
800 views

Global and Local and Private Functions (Javascript)

I am currently reading a book on Javascript by Pragmatic, and I'm confused about one thing. They have a section on how to make variables global, local, or private. What is the difference between ...
2
votes
2answers
796 views

Calling private function within the same class python

How can i call a private function from some other function within the same class? class Foo: def __bar(arg): #do something def baz(self, arg): #want to call __bar Right now, when i do ...
2
votes
2answers
229 views

Ways to protect the global scope in Javascript

ORIGINAL QUESTION: i am studying js and i would like to know if there is any (useful) difference between these two ways of protecting the global scope other than the fact that the second one can be ...
0
votes
2answers
45 views

var's I keep declaring the same things over again

Not sure if there is away to do what I want, I basically need to store the following information in a global var, and if they are being requested, then be able to fetch them from any public function ...
2
votes
5answers
159 views

Call private function when passing function as argument in function?

I'm creating a javascript framework, and the code below is not working for some reason. Any reason why? function jCamp(code){ function test(){ alert(); } code(); } jCamp(function(){ ...
1
vote
2answers
55 views

JS: Difference in effect of how private functions are declared

In this JS snippet, I have an object with two versions of a private function (bar and bar2). I declare two instances, but I was caught out by the fact that one version of the private function (bar) ...
6
votes
3answers
4k views

Avoiding declaring private functions in class header files (C++)

(In C++) I have a class whose structure is declared in a header file. That header file is included in lots of source files, such that when I edit it I need to recompile lots of files. The class has a ...
0
votes
2answers
303 views

Function templates and Private Inheritance

I recently ran into a problem when using a private inheritance scheme in which the base class defined a template method and the (privately) derived class made that method public via a using ...
4
votes
4answers
3k views

C++: Where can I define the body for a private function?

I have a header like this (header guards not shown): class GameSystem { public: GameSystem(Game *pcGame); virtual ~GameSystem(); void Setup(); private: void InitGame(); void ...
5
votes
3answers
1k views

Javascript new object (function ) vs inline invocation

Is there any considerations to determine which is better practice for creating an object with private members? var object = new function () { var private = "private variable"; return { ...
0
votes
2answers
244 views

php private mysql connection

I have 2 functions, the function get_user_info() which connects to a db called 'users', and another, called print_info() which connects to a db called 'blah'. I call get_user_info() inside ...
0
votes
1answer
141 views

Calling a function by a string in JavaScript and staying in scope

I've been playing around and searching a bit, but I can't figure this out. I have a pseudo private function within a JavaScript object that needs to get called via eval (because the name of the ...
21
votes
4answers
15k views

Defining private module functions in python

According to http://www.faqs.org/docs/diveintopython/fileinfo_private.html: Like most languages, Python has the concept of private elements: Private functions, which can't be called ...
2
votes
2answers
102 views

Call external (i.e. interface) functions also internally?

I am wondering if it is good practice to call public functions also internally. By public functions I mean all methods/functions that you created explicitly to be called from other objects, modules, ...
1
vote
5answers
220 views

Classes: Public vars or public functions to change local vars?

Exactly what the topic title says, In which cases would you prefer using public functions to change local variables over just defining that variable as public and modifying it directly?