In object oriented programming, private members are those data fields, properties, or methods of a class that are only accessible from within the class itself.
0
votes
1answer
17 views
Can someone please explain a simply way to add multi-tenancy to a rails app?
I have a bootstrapped layout running on my rails app with the ability to allow users to sign up, sign in and sign out. Even changing layouts when they do sign in, to provide a dashboard feel across ...
-2
votes
1answer
70 views
Sorting a vector in C++ by accessing a private member
I'm working on a project and I have to sort a vector, but I'm facing some difficulties.
class CService {
private:
string m_strSeller;
public:
// Other stuff.
};
class ...
1
vote
1answer
34 views
Module pattern & “private attributes”
Ok, so a couple of weeks ago, I learned about the "module pattern" in javascript. All the examples that I found went basically like that :
var module = (function () {
// private variables and ...
0
votes
1answer
29 views
Private and public methods and variable in JavaScript
I am having some problems to understand how to implement and use classes with private/ public methods and use it, even after some read around.
I have the following code:
var _Exits = 0;
var ...
1
vote
1answer
48 views
Boost mutex and class member access
I have hit a problem while trying to use BOOST threads 1.53.0. Since I am a newbie to BOOST, I have now a problem where a large class from a project needs to have some thread mode processing.
While ...
0
votes
1answer
86 views
c++ boost asio serial communication “cannot access private member” in basic_serial_port.hpp
I'm writing a C++ program to communicate with multiple devices - an Arduino Pro Mini w/ATmega328 and an Arduino Uno with GPS shield - simultaneously via COM port, and I'm using the boost::asio ...
0
votes
1answer
42 views
Make a private C++ function visible to Qml
I have been making my C++ functions callable from Qml by following the approach given in Qt documentation.
This require one of these conditions to be fulfilled :
Make the C++ function public and ...
1
vote
4answers
98 views
Declaring strings as std:string in C++
This is based on GCC/G++ and usually on Ubuntu.
Here's my sample program I've done:
#include <iostream>
using namespace std;
int main()
{
std::string c = "Test";
cout << c;
return 0;
...
1
vote
1answer
21 views
cloning or unmodifiableCollection
During my university classes on Java I learned about the concept of a privacy leak, where a public getter returns a reference to a private mutable object.
The example they gave was as follows: ...
1
vote
2answers
59 views
How can I make it impossible for my class member functions to be called in main?
I'm writing a few classes for a homework assignment and I want it to be impossible for my class member functions to be called in main. If they are, I want the program to exit. How would I know when my ...
3
votes
7answers
102 views
Java - Is it ok to have a method that passes private field values into another class' method?
I have a class with a bunch of fields, all private (subclasses access a few with protected getters). I need to pass most of those fields into a method in another class that will format them and ...
2
votes
4answers
87 views
Java Iterator for primitive types
I have a Java class of the following form:
class Example {
private byte[][] data;
public Example(int s) { data = new byte[s][s]; }
public byte getter(int x, int y) { return ...
2
votes
3answers
108 views
JUnit best practise - testing methods, where the result cannot be verified with public methods
I am writing a Socket Application in Java, where a server is taking messages from an eventsource and sending notifications to connected users, depending on the eventtype.
Now I am about to write some ...
0
votes
2answers
37 views
access the private member of the other object of the same class in member funcion in c++ [closed]
I know that the member function can access the private member of the object which is the same class. But I wonder how it works.
class Test {
public:
Test(const Test& t) {
this->a ...
2
votes
5answers
654 views
Is there a way to allow certain classes to access private properties of certain other classes?
I have 2 classes that I want to be able to access each others properties, but I don't want those properties accessed from anywhere else. Is there a way to do this? Is the only way to accomplish this ...
3
votes
3answers
166 views
Are private variables in Objective-C strong?
So searching around Stack Overflow this seems to be how to make private variables in Objective-C:
@interface ClassName()
{
@private
NSArray* private;
}
@property (strong, nonatomic) NSArray* ...
1
vote
2answers
53 views
C++ selection sort - insert method and private variables
I'm in the process of writing a program for selection sort. I just posted something regarding std::vector, however this post is on a different subject.
I was able to compile the program, however it ...
4
votes
5answers
759 views
Objective-C singleton pattern in iOS 5+
I've been reading a lot of threads and blog articles about how to implement a singleton in objective-c, several of them maybe being a bit deprecated (year 2010 or earlier), and it seems like people ...
7
votes
2answers
152 views
python - why is read-only property writable?
I am trying to define a class with a read-only property in a Python; I followed Python documentation and came up with the following code:
#!/usr/bin/python
class Test:
def __init__(self, ...
0
votes
3answers
57 views
How private variables are accessible?
This is my class
abstract class DataStore_Adapter {
private $id;
abstract function update();
abstract function insert();
function __construct() {
$this-> id = 3;
}
...
5
votes
1answer
67 views
Where to Hide Your Privates in Objective-C [duplicate]
What's the convention/rule/preference/diktat about where private instance variables should be declared and why?
// someClass.h
@interface someClass : NSObject {
@private
// Here in the class ...
2
votes
3answers
130 views
Access private variable through public property
I can't seem to access my private member variables through their public properties from a different class. I'm trying to instantiate some Student objects in StudentList through the Student Class. I've ...
2
votes
1answer
86 views
Regarding inner classes private member variable access
Say there is an class named MyOuter which consists of a simple inner class named MyInner. In trying to learn how inner classes work, I'm trying to understand whether an outer class private member ...
1
vote
1answer
18 views
Why would some controls be public and others private?
I noticed this Windows-added code in a legacy *.cs file (prior to the advent of partial classes which evicted suchlike from the code files; specifically, this is in an old Windows CE project):
...
0
votes
1answer
62 views
Javascript variable shared across instances
I'm calling a recursive function and I want to concatenate the errors received from the recursive call back to the caller. Following is the code, I use. However, it looks like the _errors variable is ...
0
votes
2answers
71 views
Making an attribute of a Java object accesible by that object only
Is there a way in Java to express that an attribute x of an object o can be accessed (I mean by dot notation o.x) only by o itself? To be clear: I'm talking about object-level access as in Smalltalk, ...
0
votes
1answer
54 views
GHUnit access private variable
I'm trying to access a private class variable in my unit test:
Class
- private variable abc;
unit test
category/extension above the unittest m file content
@property (...) variable abc;
but ...
0
votes
1answer
76 views
Private accesor won't access private member
In my class, to test, I have a private boolean instance variable and a method to access it:
MyClass()
{
private volatile bool b;
public MyMethod()
{
b = false;
}
}
After ...
1
vote
2answers
97 views
Why do I need the private methods in real life? [closed]
I understand how it works and I understand meaning of syntax. But I do not understand why would I want to use it?
0
votes
1answer
63 views
Member variable changes for unknown reason in c++..? [closed]
I'm creating a program containing Cells, and for that I have a Cell class and a CellManager class. The cells are organized in a two dimensional array, and the Cell class manager has two int member ...
0
votes
5answers
145 views
How to access private variables in a Java class method [closed]
I am trying to access a private variable (x) in my method distanceFromPoint but it seems it doesn't work. How can I access it? My method is returning 0.0 all the time regardless of other values.
Code
...
0
votes
3answers
88 views
How to access `conventional` private variables in python?
I have a python module, m1.
# m1.py
class C1(object):
def __init__(self):
self.__pri = 10
self._pro = 5
self.pub = 1
Then in bpython,
>>> import m1
...
0
votes
2answers
78 views
Rails: how to test before_save callbacks
Given a typical ActiveRecord model, I often have before_save callbacks that parse input, for instance taking something like time_string from the user and parsing it into a time field.
That setup ...
10
votes
2answers
120 views
Why does GCC allow inheriting from a private nested class?
Consider the following code:
class A {
class B {};
};
template <typename C>
class D : A::B {};
void f() {
D<int> d;
}
D<int> inherits from A::B which is a private nested ...
0
votes
6answers
273 views
Java - access private instance variables
I need to access the private variables from the following class listing (Species.java) in order to use them in the KlingonOx.java class.
The purpose of the KlingonOx.java class is to determine after ...
-2
votes
3answers
126 views
C#: Giving access to private members without 3-fold code duplication
I have a class
public class Foo{
public Foo{...}
private void someFunction(){...}
...
private Acessor{
new Acessor
}
}
with some private functionality (someFunction). ...
3
votes
5answers
221 views
static const std::vector
I am writing an image viewer with Qt.
I am trying to do the following in the header file:
class ImageModel
{
private:
const static std::vector<int> mZoomLevels;
}
in the source file:
...
0
votes
2answers
57 views
Access to public and private methods from event handler closure
I have a difficulty in understanding, how my current JavaScript code works. I've managed to solve a problem in accessing private object method from event handler closure, but I'd like to know why does ...
0
votes
2answers
72 views
How to use private Declarations in Shared Function in a Class?
I am trying to use a privately declared variable/object within a class, from a shared function within that same class.
My main goal is to be able to access the shared function outside of the class, ...
6
votes
7answers
783 views
Access private property without get/set [duplicate]
Possible Duplicate:
Absence of property syntax in Java
See the following situation:
class Test extends Object {
private int x;
public getX() {return x;}
public setX(int _x) {x ...
3
votes
1answer
489 views
Private static variables in php class
I have a few classes that are often run through var_dump or print_r.
Inside these classes I have a few variables that are references to other, rather large objects that only ever has one instance of ...
0
votes
1answer
57 views
Class reference grants access to private member
I was writting a class for 'turning' modes on-off easily, then I got a bit confused. On the overloaded operator= to copy from another class, access to the private T member m_Modeis granted, why does ...
1
vote
1answer
61 views
Constructor for Struct with Private Members
Consider the following code:
class A
{
private:
struct B { private: int i; friend class A; };
public:
static void foo1()
{
B b;
b.i = 0;
}
static void foo2()
...
0
votes
4answers
85 views
Why a subclass of a nested class cannot access the nesting class's private field here?
Java code like this:
public class A {
private static int a;
public static class B {
static void funcc() {
a = 3;
}
}
}
...
56
votes
2answers
989 views
Why can I use auto on a private type?
I was somehow surprised that the following code compiles and run (vc2012 & gcc4.7.2)
class Foo {
struct Bar { int i; };
public:
Bar Baz() { return Bar(); }
};
int main() {
Foo f;
...
-3
votes
4answers
106 views
Is it possible to call a method from main if it is private? If not, how would it be possible?
I am trying to get this program to start running but currently I just get errors. I am not sure how to get this to work. If I change the class SavingsAccount to public it should be okay, but I am ...
2
votes
4answers
165 views
Python: Using getter or “private” attribute inside setter?
Suppose I have a class NamedObject which has an attribute name. Now if I had to use a setter, I would first have to define a getter (I guess?) like so:
class NamedObject:
def __init__(self, ...
0
votes
3answers
139 views
Static private member counter
UPDATE::
OK so I have these new lines in the header file:
static void gcdStatsCounter();//increments counter
static void display(); // displays the gcdStats
static int gcdStats;//• calls to gcd
...
0
votes
0answers
95 views
getting access to another class [closed]
public class MemberTest
{
private String id, name;
private int pinNumber;
/**
* Constructor for objects of class Member
*/
public MemberTest(String id, String name, int ...
2
votes
1answer
32 views
The value of a private member “current” is changed abnormally in the end of a member function
I met a very weird behavior on a private variable in class.
Problem Description: The value of a private member "current" in class lapi_xmeef_table is changed abnormally in the end of a member ...





