Tagged Questions
-1
votes
3answers
93 views
Delphi 'private' clause (directive) does not work
I'm trying to check if my private procedures are really private. But it works the way it shouldn't.
Please help me, maybe I missed something about how should incapsulation work.
This code should ...
0
votes
1answer
33 views
error: C2248: 'QGraphicsItem::QGraphicsItem' : cannot access private member declared in class 'QGraphicsItem'
I encountered the error described on the post title in Qt.
I have a class call "ball", and it inherits class call "tableItem" which inherits QGraphicsItem.
I'm trying to use prototype design pattern, ...
0
votes
1answer
25 views
private member attribute is not working CI
Here is my model class
class Sessions_model extends CI_Model
{
private $permission = array()
public function __construct()
{
parent::__construct();
}
public function ...
-4
votes
1answer
66 views
C++ creating a void without having to include it in the header [closed]
I am pretty sure I accomplished this once.
I created a "private" void function, and I did not have to state it in the header.
I simply used
void pDoThis()
{
pDoAnotherPrivateVoid();
...
1
vote
5answers
83 views
What about public method returns private class instance?
i am trying to test the following situation:
There is a main. (city.Main)
There is a package. (package castle)
Within the package, there is a public class (castle.Guard), and a package-private class ...
0
votes
1answer
68 views
Initially declare variables in PHP classes private or protected [closed]
I see people using mixed private and protected declared variables in their Zend-Framework 2 classes. Is there a difference in this initial declaration? I know the basic difference between private and ...
0
votes
1answer
38 views
sorting an ArrayList using private instance variables of an object
I hope this question makes sense. I have a class called Item that has private instance variables name, quantity, and price. Then I have a class called ItemList that extends Item and puts objects of ...
-2
votes
2answers
66 views
how to edit private members in a private function [closed]
if i had a private member that on occasion may need to be updated within a private member i get an error that this member cannot be updated. my code looks a bit like this:
class foo
{
private:
int ...
0
votes
1answer
76 views
Properties using private methods in c++
I have this class :
class Size
{
private:
int size_x;
int size_y;
int GetX( void );
int GetY( void );
void PutX( int x );
void PutY( int y );
...
1
vote
3answers
131 views
Allowing access to private members
This question is somewhat a continuation of this one I've posted.
What I was trying to do: my point was to allow access to private members of a base class A in a derived class B, with the following ...
2
votes
4answers
211 views
Inherit private members from base class
This question has already been asked here -- more than twice, actually --, but I myself haven't been able to derive a solution to my problem from the posts.
What I have is a library, with, among ...
0
votes
1answer
384 views
cannot access private member declared in class
I've got piece of code, it's method definition
Move add(const Move & m) {
Move temp;
temp.x+= (m.x +this-x);
temp.y+= (m.y + this->y);
return temp;
}
and this is class ...
-2
votes
1answer
114 views
Private ArrayList shared by all members in class
When I use the setAssetWeight method to set values of objects stored in the ArrayList, every instance of the object has the values in their ArrayLists changed to the value set with setAssetWeight.
...
-1
votes
2answers
196 views
Access the variable declared inside the private class in java
This is my code.
private void btnloginActionPerformed(java.awt.event.ActionEvent evt) {
String username = "";
String sql = "select * from userinfo ...
0
votes
4answers
89 views
How to access the variable decleared inside of private class from other classes in java?
I have login page with 2 text field and a login button. when login button is clicked, the username and password is retrieved from txtfield and check with username and password in database. if password ...
0
votes
6answers
1k views
Private class declaration [duplicate]
Possible Duplicate:
Java: Why can we define a top level class as private?
Why can't we declare a private outer class? If we can have inner private class then why can't we have outer private ...
0
votes
1answer
45 views
Content error fundamental about friend declaration in c++
I just don't get it, what is wrong in this friend declaration, first error msg:
test.cpp: In function 'int main()':
test.cpp:34:7: error: 'void steuerung::exe_testa(testa)' is private
test.cpp:48:15: ...
-5
votes
2answers
87 views
Pass arguments to base class
I'm currently working on a C# project, i'm new to C# so i'm not that familiar with classes and all. anyway here is my sample program structure:
class foo
{
public foo(String txt) : base(new ...
1
vote
3answers
193 views
Automatic way of generating accessor classes in C#
I've got the following problem. Suppose, that there is a class, which contains a private class, which have to be tested. To cut off unnecessary comments and answers, yes it has to stay private and ...
2
votes
3answers
214 views
Actual implementation of private variables in python class [duplicate]
Possible Duplicate:
The meaning of a single- and a double-underscore before an object name in Python
I had a question when I was reading the python documentation on private variables link.
...
3
votes
2answers
922 views
Instantiate private inner class with java reflection
Is it possible to instantiate a private inner class from another class using java reflection. For example if i took this code
public class Main{
public static void main(String[] args){}
}
class ...
1
vote
1answer
298 views
C2248: Cannot access private member declared in class
We are trying to compile an application using VS2005 and we are receiving the following error message:
error C2248: 'palo::bytecode_generator::WM_OPCODES' : cannot access private enum declared in ...
0
votes
4answers
127 views
C++ public and private datatypes
I am currently working on Chapter 7 in the book "Starting Out With C++ Early Objects" by the Pearson printing company.
I am unable to understand the function of the variable 'r' in this class ...
2
votes
1answer
225 views
private vs. public typedef [closed]
I have the following code:
//MyClass.h
class MyClass {
typedef std::map<std::string, int> OpMap;
static const OpMap::value_type opMap[OP_COUNT];
public:
//methods
};
...
1
vote
3answers
72 views
Setting private properties of a class using its public methods, c++
Something like this:
class someclass
{
public:
someclass();
~someclass();
long Set(int x, int y);
private:
int _x;
int _y;
};
long Set(int x, int y)
{
_x = x;
...
2
votes
2answers
414 views
{AS3} addChild() in a Class does not work
so I have a class:
package
{
public final class Main extends Sprite
{
private var TextHolder:Sprite = new Sprite();
public function Main():void
{
...
0
votes
3answers
87 views
declaring variables in classes using PHP
Fairly new to classes in PHP, so bear with me.
class processRoutes
{
//Next line works
private $doc = "works as as string";
//Next line does not work, "Parse error: ...
3
votes
5answers
590 views
What is the difference between Protected and Private? [duplicate]
Possible Duplicate:
Private and Protected Members : C++
I don't understand the difference between protected and private members or methods, as I assumed both will hide the member or the ...
0
votes
3answers
75 views
Scope issue : how to see (not access neither modify !) a private attribute from outside its class?
I'd like to know if there's any way to see (and not access neither modify) a private member from outside its class ?
template <typename type_>
class OBJ1
{
//methods
};
class OBJ2
{
...
3
votes
1answer
103 views
Modifying private class variables within a class method?
This is probably a really basic error I'm making, but I'm quite new to c++ so please don't judge!
Basically, I've got two classes as follows:
class A{
private:
vector< vector<int> ...
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 ...
1
vote
1answer
237 views
Private access? Java [closed]
I have a private access error to do with the variable "totalFloat". However I have been referencing and using methods from the same class without this problem.
Is there a general way to get around a ...
2
votes
2answers
187 views
Private member declared in other class
I'm programming my first big "class" in a c++ program (it deals with I/O stream) and I think I understood the concepts of object, methods and attributes.
Though I guess I still don't get all the ...
2
votes
5answers
815 views
Private constructor in abstract class [closed]
In Java what is the purpose of using private constructor in abstract class?
In a review I got this question, and I am curious, what situation need to be to use constructor in such way?
I think it ...
1
vote
3answers
278 views
JSP EL private static class inside JSP
I have following jsp:
<%@ page import="java.util.Arrays" %>
<%@ page import="java.util.List" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
...
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?
-2
votes
2answers
164 views
The difference between private and protected
In PHP there does not seem to be a big disparity between private and protected methods.
I asked why I should use protected in PHP Chatroom and got this answer:
unless you have good reason not to ...
0
votes
4answers
2k views
Advantage of set and get methods vs public variable [duplicate]
Possible Duplicate:
Why use getters and setters?
Is there any advantage to making methods to access private variables in your class instead of making the variable public?
For example is ...
0
votes
1answer
676 views
PHP Private variable access from child
so I'm trying to work out an issue I'm having in designing PHP classes. I've created a base class, and assigned private variables. I have child classes extending this base class, which make reference ...
2
votes
5answers
937 views
javascript private function access public variable
i have this class:
function ctest() {
this.var1 = "haha";
this.func1 = function() {
alert(this.var1);
func2();
alert(this.var1);
}
var func2 = function() {
...
4
votes
3answers
117 views
java - access private variabes [duplicate]
Possible Duplicate:
Java private field access
I just observed little weird(imho) thing in java :
class foo{
private int secret;
public int getSecret(){
return secret;
}
...
0
votes
3answers
168 views
C++ Sending a private class variable into a function
I'm writing a program dealing with binary search trees in C++. I'm using a .h file that contains a class "treeNode" and I have a function that searches the tree for a specific number and returns a ...
0
votes
5answers
40 views
What's the proper way to access fields from methods
I want to access a StringBuilder field in a class from a method. Both the field and method are non-static. I've tried this many ways, and it all seems to work whichever way I do it, but I was just ...
0
votes
3answers
310 views
Calling private members of another Function - Issues with Arrays and Types
I'm having trouble with C++ calling elements of an array of type class.
Here is a sample of my code;
//village.h
class village
{
public:
class Human
{
public:
...
0
votes
2answers
113 views
Call a method from another class when shake is detected
HERE IS THE CODE: http://min.us/mWdMO0n14
I'm a Obj C newbie, so I've searched quite a bit, but haven't found anything that can solve my problem.
I have CalculatorViewController.h and .m and then ...
-1
votes
1answer
166 views
Getting “complex-functions.cpp:57:25: error: expected initializer before ‘add’” What does it mean?
I have a class declared like this in a header file :
class COMPLEX{
private:
typedef struct{
double real;
double imaginary;
}complex;
Now when I call this ...
5
votes
4answers
695 views
How to protect python class variables from an evil programmer?
How can I protect my variables from this kind of attack:
MyClass.__dict__ = {}
MyClass.__dict__.__setitem__('_MyClass__protectedVariable','...but it is not')
The above changes the variable ...
1
vote
4answers
956 views
How come the PHP private class var is not private?
I was programming, and came across this problem:
In the code sample below, a public function sets a private varriable. Now one would expect the content of that private varriable is private, thought ...
4
votes
4answers
589 views
How to define a class within another class' private in C++
Is it possible to define a class in another classes private and use it for an array? For instance:
class a
{
public:
private:
class b;
b myarray[10];
class b
{
public:
...
3
votes
2answers
104 views
How/Why does this work in python? rover._Dog__password()
I am doing the python koan (for python 2.6) and ecnountered something I don't understand. One of the files has the following code in line 160:
class Dog(object):
def __password(self):
...
