in OOP, mechanism for restricting access to some of the object's components

learn more… | top users | synonyms

0
votes
1answer
36 views

How Buffered Streams works?

In Java and C# there are several classes for buffering streams: BufferedStream in C#, Buffered(Input|Output)Stream and Buffered(Reader|Writer). They gets some stream in constructor and implements ...
3
votes
3answers
50 views

Why does PHP allow calling private methods from other instances?

PHP would let calls to private methods as long as they come from instances of the same class. This is how the PHP docs explains it: Objects of the same type will have access to each others ...
1
vote
2answers
43 views

Public variables in Python classes?

I am learning Python classes on my own right now and came across this page: http://www.tutorialspoint.com/python/python_classes_objects.htm The variable empCount is a class variable whose value ...
0
votes
1answer
43 views

I keep getting confused about proper encapsulation with regard to pointers, could someone take a look?

I keep finding myself wanting to do things the right way™. However, I am a bit confused about data encapsulation (not the principle of it, but how to do it correctly in C++) Let's say I have the ...
2
votes
2answers
68 views

C# Nested Classes and Inheritance

Just need some help with nested classes and inheritance.. namespace blah { private abstract class InheritedSomething { public void doSomething() {}; } class OtherClass : ...
3
votes
4answers
353 views

Should a BOOL ivar be a pointer to allow another class to set it?

My class has a BOOL property that needs to be set by another class, so I am trying to use a pointer. I'm declaring a property for it like this: @interface SomeClass : SuperClass { BOOL *_shared; ...
-1
votes
10answers
75 views

What is the use of encapsulation in java .I can able to change the property values with setter methods

Sorry if it is simple for u .But i am in confusion.I try to understand a lot of times but i failed to understand this. Encapsulation is the technique of making the fields in a class private and ...
-1
votes
1answer
48 views

C++ creating a self sufficient object that extends another class

I think that I really am confused a bit on objects and what happens when you extend an object. My goal here is to create B() by extending A() )so that I get all of A()'s functions, etc, but make B() ...
1
vote
2answers
19 views

Can I retrieve information from another file, using Prolog?

I'm trying to write a simple translation script, but the file's getting rather... long and confusing, mostly because I've stored all the translations at the end of the file. They're in the format ...
0
votes
1answer
35 views

How should I conceal helper classes from the rest of the world?

I have a few classes. One class is supposed to be visible to anybody that needs it, and the rest are helper classes (well, some of them are structs) that should only be accessible to the principal ...
2
votes
1answer
64 views

Correct way to encapsulate through generic interfaces

My application consist of server and client, which are independant. They communicate through objects created and modified by server. Client is provided with read-only interfaces of this objects. As ...
0
votes
3answers
88 views

C# class members access

C# class data members(fields or properties) can either be private or public or protected. What if I want a private field for member methods use only and not to expose to the outside world? I can ...
0
votes
1answer
55 views

Is there a way to encapsulate a 2nd class into primary class?

I'm wondering how to have primary class show objects of 2nd class (keep 2nd class internal)? I'm using c#. Sort of like a wrapper. Is that a bad thing? Can somebody provide an example or links? ...
0
votes
2answers
51 views

Why must the accessor be more restrictive than the property?

I have this code: public string foo { get; set; } Now, I interpret this as my object has a public property called foo, and both it's accessor's are public. If I write this: private string foo { ...
1
vote
0answers
23 views

How to maintain encapsulation whilst wrapping multiple API classes which interact?

I have API classes A and B, which I've wrapped, say WrappedA and WrappedB. Now I need to call A.AddMappingTo(B) in such a way where i can call WrappedA.AddMappingTo(WrappedB), whats the best method of ...
1
vote
2answers
60 views

Do private event handlers break encapsulation?

Everybody knows that private event handler can listen to an event from other class. (Examples in documentation always use just private handlers.) Event handler is nothing more than a private method ...
-1
votes
4answers
72 views

why we are declaring variables as private in java [duplicate]

Normally in java bean classes we are declaring variables as private. Anyhow we are declaring setter and getter methods as public. Then we are able to get and set the value of property. So what ...
0
votes
3answers
43 views

Copying Array, Allow it to remain the same when input to constructor changes

My point class is immutable. When I am given input into the constructor originally, it should be copied into the cloneList object. This would allow for it to remain the way it was before if a couple ...
0
votes
2answers
40 views

Update class X created by class A from class B. Encapsulation issue

Previous question (easier): Update class from another class, encapsulation issue Example: class User { public void BeginWork(Device device) { Command command = new Command(1); ...
0
votes
1answer
51 views

Update class from another class, encapsulation issue

How must I update a class, which must be updated only from another specific class? In the following example encapsulation is broken, because Sensor can be updated from any other class, not only from ...
2
votes
2answers
38 views

Doesn't property depency injection violates the principle of encapsulation?

The mechanism to put data & methods that operate on these data, together in a class is called as encapsulation. However to follow Open/Closed principle, Dependency injection is achieved by ...
0
votes
1answer
29 views

Duplicating Array and Acting Upon it

I asked a question earlier about cloning an array so that when you change the area/scale the polygon etc... it will not change the values of the array (basics of Encapsulation). After trying ...
6
votes
3answers
113 views

How to make class more testable?

I have this: class FooGenerator:IFooGenerator { private object _generated; public void Generate() { // Generating GenerateSmallPart(); ...
1
vote
9answers
147 views

What's the difference

int a =10; a = 30; & String a = "abc"; a = "xyz"; Can anybody tell me what kind of assignment is performed here. I know it's hardly worth to ask such a silly question but i just want to find ...
1
vote
1answer
33 views

Design and encapsulation: Dictionary with multiple class instances, or one instance with many internal dictionaries

I have a Calculator class which takes data of n types, and returns a value based on some calculation on the data. I am generating the data in my Main class, and I'm faced with two options on how to ...
6
votes
4answers
129 views

Validate a value in property

So I heard that validating a value in a property like this: //dummy example, let's assume that I want my value without dots public string MyProp { set { if(value.Contains('.')) ...
0
votes
1answer
43 views

Keeping encapsulation in while keeping repositories out, entity framework, code first

I have a situation, which I will try to greatly simplify, in which a method on an object should create a new persistent object of a different class. How can I do this while maintaining repository ...
0
votes
2answers
31 views

Python - Using encapsulation/functions to modify a variable and pass it to the current namespace

I'm re-writing some code to use in a program I designed a little while back. I'm still learning Python, so please bare with me. One function I'm trying to write is one which gets the header of a CSV ...
0
votes
2answers
49 views

Encapsulating related fields into a companion object/class and avoiding duplication

My application uses a properties-file to load several properties. Every instance of the application has 3 environment-related parameters - one of them is a property, the other two are computed based ...
1
vote
1answer
36 views

Private method as assembly's first method in call stack

The following exception was recorded in the log on a client system. System.ArgumentOutOfRangeException: Value to add was out of range. Parameter name: value at System.DateTime.Add(Double value, ...
1
vote
4answers
78 views

Protect from adding object to NSMutableArray in public interface

I want to protect access to NSMutableArray in public interface I am trying to do this by defining property as NSArray in public interface and as NSMutableArray in private interface like this: ...
0
votes
4answers
82 views

Ruby encapsulation

I'm working with the book "Beginning Ruby", everything was going great up until the point where I got to encapsulation. I get what this piece of code is doing, I just don't know why it is set up this ...
1
vote
1answer
43 views

How do I designate a delegate for a class (not an instance) considering I can't use properties?

I've defined a protocol for my custom class, and now I want to give it a delegate. The class will not be instantiated, only used for its class methods. The delegate class, however, has been ...
0
votes
0answers
34 views

Non Public New / Check wether the Cache already exists bevor instantiation

I'm new to the whole Caching problem so just point me to the right articles if this is a solved problem and I didn't find the answer to it :-) I'm trying to make sure nobody ever calls a new for a ...
3
votes
1answer
92 views

C++ library “internal use only” coding style

I'm writing a library in C++. All classes and global function are declared inside mylibrary namespace. I need to create some classes for internal use only: who will use this library should immediatly ...
2
votes
5answers
648 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 ...
0
votes
2answers
54 views

C++: friend function passing to non-friends [closed]

Doesn't this break encapsulation? B.h: class B{ private: int x, y; public: B(){this->x = 1; this-> y = 1;}; B(const B& obj){this->x = obj.x; this->y = obj.y;} ~B(){}; ...
3
votes
6answers
181 views

Encapsulation issue with delegates?

I'm wondering why this works? For example I have some executor class that looks like so: public class Executor { public void Execute(Action action) { action(); } } Now I have ...
0
votes
1answer
27 views

Adding encapsulation to an existing XNA game starter kit - Specifically to a method

I am using the XNA Shooter Starter kit and want to add encapsulation to it for a project I have understood how to do it for items such as integers, where you encapsulate the field so that the ...
1
vote
3answers
140 views

Composition pattern

How should one approach composition instead of inheritance? Consider the following class: class GameObject {...}; class Sprite { public: void changeImage(...); }; class VisibleGameObject: ...
1
vote
2answers
49 views

How to wrap a JS library with a function and put it into a namespace?

I have a Payment Gateway API wrapper in JavaScript. But It has been designed badly. It uses 163 global (window) objects. What I want to do is get all the global objects generated by the API ...
0
votes
0answers
18 views

How the CSMA/CD protocol encapsulate the date

I want to learn more for the CSMA/CD data encapsulation technique. For example if an email from a user send to another user how this encapsulated. Does anyone knows a good reference link?
6
votes
1answer
211 views

Doctrine2 ORM does not save changes to a DateTime field

I have a User entity: use Doctrine\ORM\Mapping as ORM; /** * ExampleBundle\Entity\User * * @ORM\Entity() */ class User { // ... /** * @ORM\Column(type="service_expires_at", ...
0
votes
2answers
49 views

Should you use properties to initialize your fields in the constructor?

Pretty simple question really, should I use my properties to initialize fields in the constructor or reference them directly? Example: public class Foo() { private string example; public ...
0
votes
2answers
89 views

Does MVC break encapsulation?

Let's say I have an class to model a city. Its characteristics are the following: It has only two properties "name" and "population", both private, that are set in the constructor. It has getters ...
0
votes
3answers
113 views

Why parent class type reference variable having reference to child class object can't access child class's Methods

Since this object(stated in title) can invoke overridden methods in child class, why it can't invoke other methods of child class? I need answer as detailed as possible like memory organization, ...
0
votes
1answer
35 views

Encapsulating server communication for data intensive multi-server applications

There are two databases, A and B, that serve web pages and communicate with each-other via internal network when they need to share data. Sometimes server A needs to produce a webpage with a chart ...
0
votes
2answers
60 views

Encapsulation of ObservableCollection does not work

My property is: private static ObservableCollection<Wynik> lottoWyniki = new ObservableCollection<Wynik>(); public static ObservableCollection<Wynik> LottoWyniki { ...
0
votes
2answers
89 views

How to avoid the fragile base class in Java

I am studying the fragile base class problem and found the following paper interesting: https://www.research.ibm.com/haifa/info/ple/papers/class.pdf In this paper it is argued that it would be great ...
4
votes
7answers
113 views

Java: When NOT to use `private`

Since it's regarded bad OO practice to have public variables in a class (instead, use getters and setters) then why not use private on all variables? Why does Java even permit using public if it's bad ...

1 2 3 4 5 14