Object-oriented programming is a programming paradigm using "objects": data structures consisting of data fields and methods together with their interactions.
0
votes
1answer
30 views
Protected iteration through custom container
I want to make a container class that should be allowed to be iterable through a for each loop, but only through for each loops. I don't want to grant access to its .begin() and .end() methods.
Is ...
0
votes
1answer
25 views
Calling static members from the super class of a generalizated attribute in Java
I must admit that Java is a little messy when working with templates...
As the title explains, i'm trying to use an static member coded on the super class of some generalizated attribute. How can i ...
0
votes
1answer
25 views
javascript, overriden parameters
Hi there and sorry about my english grammar.
I am trying to create some animations for a game, but it is just driving me crazy.
As you can see here i try to create a serie of animations, passing ...
-1
votes
0answers
24 views
creating a singleton class from class inheritance
I'm developing a class (A) and I want to create a sub class (B) which would act as a singleton of its super class (A)
thus i can use
A = function(){ };
A.prototype.name;
var B.prototype = A();
var ...
0
votes
0answers
22 views
object-oriented “function libraries” using namespaces in php
I have been developing a MVC framework using php 5.x.x for about six months now. I understand that it is viable to use existing frameworks for the sake of not reinventing the wheel. However the basic ...
1
vote
1answer
29 views
Class method pre-invocation hooking
Is it possible in PHP 5.X to have a method in a class that is executed whenever a classes method is called, prior to the called function? I need this because i want to do some dynamic validation for ...
0
votes
0answers
6 views
calling Doctrine model in zend framwork
Im using Doctrine 1 and zend framework and I have memory leak.
I have Article.php (extends BaseArticle ) and ArticleTable.php (extends Doctrine_Table) that generated from database using Doctrine
...
3
votes
4answers
56 views
OOP Terminology: class, attribute, property, field, data member
I am starting studying OOP and I want to learn what constitutes a class. I am a little confused at how loosely some core elements are being used and thus adding to my confusion.
I have looked at the ...
2
votes
4answers
64 views
Python class members confusion
First of all, i come from a java and php background and am now learning python. This may therefore seem like a silly question but it has me a little confused.
As an example in php:
class MyClass
{
...
1
vote
2answers
30 views
jQuery OOP element parameters
I want to create a jquery slider using oop. This is the structure of my code :
var photoGallery = new Slider();
function Slider(){ this.init(); }
Slider.prototype = {
el : {
nav : ...
2
votes
3answers
42 views
A Factory building one object, is it wasteful or unnecessary? [closed]
I used to have
CustomerCollection extends AbstractCollection
OrderCollection extends AbstractCollection
etc...
but I have realized I do not really need them and a single Collection will do.
I have ...
0
votes
1answer
33 views
PHP exception overwirte toString()
I'm having problems with my own exception class: IOExeption. I want it to have another output then the normal exception class but in spite of the code below, its output is still the same.
What am I ...
-1
votes
2answers
56 views
Need of Function overloading? [duplicate]
I am wondering if a programmer has to write different calls for overloaded function then why shouldn't programmer use different names for the calling the function.
eg. area functions using Function ...
2
votes
5answers
64 views
Java OOP based Program Flow [closed]
i am learning basic java , Read basic concepts from Head First Java (Polymorphisim,abstract class/methods, overriding etc ) , now i am doing a very simple example where a Remote is used for ...
0
votes
3answers
42 views
Obtain the higher number of repetitions in an ArrayList
I have the following structure:
ArrayList<ArrayList<Movies>>
And The movies have duplicates, I need to obtain the n movies that have the higher number of repetitions. I've been thinking ...
0
votes
2answers
50 views
C++ how to display multidimentional array in OO design
Hi I'm writing a simple version of Pacman with OO design in C++. I have problem displaying the content of a 2D array. The array constains a bunch of symbols, which represent the wall of the map/maze. ...
0
votes
1answer
26 views
Possible to initialize Laravel IoC with data?
Trying to use the IoC as a factory. Can I pass data to initialize/construct object with?
App::bind('Song', function(){
return new Song;
});
and mimic this (can $data never gets passed along, ...
2
votes
2answers
73 views
How to workaround impossible inheritance from sealed class?
Today im working in WPF.
I tried to inherit from System.Windows.Shapes.Line class, like this:
class MyLine : System.Windows.Shapes.Line
{
public Ln()
{
this.Stroke = Brushes.Black;
...
4
votes
4answers
82 views
How can a value type implement a ref type
I came across a scenerio where a value type is implementing ref. type.
Just want to know how come is that possible ( what goes behind the scene ?)
A struct is a value type and interface a ref. type ...
0
votes
0answers
3 views
Creating an RPC Server & Engine
I'm wanting to create an RPC Engine on a Windows server that takes incoming requests from any platform and language (e.g. Linux & Python or PHP) and performs tasks based on the content of the ...
0
votes
1answer
32 views
How to store multi-player keys settings in a simple game?
I've got a simple WinForms game where player can drive a car on the form. There can be more cars each driven by different player.
When a key is pressed, Form1_KeyDown is fired. Now I need to ...
3
votes
1answer
113 views
How to instantiate derived class from base class generically
I have extended the unit converter class given in this post:
http://stackoverflow.com/a/7852721/1474894
This is what I have now:
public abstract class UnitBase<TUnitType, TValueType> where ...
0
votes
5answers
93 views
Why can't we create an object with the “this” keyword in java? [closed]
I've seen places where object creation factories are implemented by having a reference to the class object and having a create method which does this:class.newInstance(), which uses reflection, and ...
1
vote
2answers
57 views
Entity Framework Code First Common Database Audit Fields
I'm new to Entity Framework, in the past I've used Enterprise Library or ADO.NET directly to map models to database tables. One pattern that I've used is to put my common audit fields that appear in ...
0
votes
1answer
21 views
New to Object Oriented Design
I am new to object oriented design. I am looking forward to some tips on how to model the below mentioned requirement using objects.
Requirement: A program has many Students. A program logs in to the ...
0
votes
2answers
42 views
Difference Between Object Type and Reference Type
I was studying Polymorphism from "Head First Java" and came to this concept. Can anyone explain it please with an example?
Compiler checks the class of reference type -- not the Object type.
...
1
vote
2answers
29 views
c# run method from abstract and inheritor with a single instance
Is there a way I could run my method from an abstract class without explicitly running it(I mean I have the same method name which would inherit it and what I want is to run both the one from the ...
0
votes
1answer
47 views
Grails command that extends another command bug
I'm having a problem with Commands in Grails when I extends one generic Command to reuse it's custom validator.
When I clean the grails project, it loses the reference to the extended custom ...
0
votes
0answers
12 views
ios master-detail view, detailView not properly instantiated
I have a master-detail application with 2 views (master and detail). In my detailView I have a tableView which shows 3 details. My masterView uses prototype cells to display a list of names. When ...
1
vote
3answers
60 views
Object oriented design, designing a tree
I'm creating a (atypical)tree in Java that will be composed of three classes: node, branch and leaf
Each node stores the branches it is connected to in a HashSet. The branch is supposed to lead to a ...
3
votes
2answers
79 views
How do we activate (on demand) an object that is a property of another object?
I am implementing an object TTextFile that is a framework for using the low level pascal file function with the OO paradigm. I want to add to developers the option to use it as a TStringList when ...
4
votes
5answers
103 views
I have a base class. How do I call the right method for the right derived class?
Obviously trying to simplify the problem here. I have a base class and a number of derived classes:
public class Mammal { }
public class Cat : Mammal { }
public class Dog : Mammal { }
And a ...
-2
votes
3answers
49 views
Calling the over-riding function in the parent class [closed]
I have a little question about java inheritance. So say I have the following classes.
class ScreenObject {
public void update(GameContainer gc, StateBasedGame sbg, int delta) {
Input ...
1
vote
4answers
45 views
class property inaccesible due to protection level
here are my class declarations
public class PlacesAPIResponse
{
public string formatted_address { get; set; }
public Geometry geometry { get; set; }
public Location location { get; set; }
...
-2
votes
1answer
27 views
OOP - What is the different of Public and Protected?
Could someone clarify and help me to understand this. Both public and protected can be accessed from subclass. So what is the different between PUBLIC & PROTECTED ? and when to use them ?
C#
I ...
0
votes
2answers
69 views
Why is my destructor not being called?
My destructor is not being called when the program exits. The object is a singleton, perhaps I am missing something?
Here is the header and cpp file:
#ifndef MYSQLCONNECTOR_H
#define ...
0
votes
1answer
48 views
__get() fetching children, detect if child exists
I have a PHP Entity class, where each entity may contain multiple child Entities, and am using __get() to step down from a parent to find its children.
...
10
votes
8answers
443 views
Why do we pass objects rather than object members to functions?
I have a method FOO() in class A that takes as its arguments input from data members of class B among other things (let's say they are two floats and one int). The way I understand this, it is ...
0
votes
1answer
59 views
PHP Invalid Image Dimensions [closed]
Here's the code: With unneeded code.
$w = $_POST["w"];
$h = $_POST["h"];
$name = $_POST['thumbname'];
$scale = $w/140;
...
1
vote
3answers
94 views
Show / hide links in MVC view based on permissions
I understand how to implement ACL and restrict access to controller methods.
What I don't understand is how to display certain links only for users with certain permissions in the view? Could someone ...
0
votes
1answer
24 views
How to handle non-existing / dynamically created method?
Let's assume I have dynamically created object that maps a database table's row. At the time of writing my code, I have no idea about table's columns. So what I store in fields are database ...
0
votes
2answers
34 views
Make object method_missing behave like class method_missing
I have created a class which I have some constant hashes. I'd like to type Myclass.myhash.hashkey and to show the value of the hash. Right Now I have created a similar behavior with method_missing but ...
2
votes
1answer
47 views
How to deal with name hiding when base class function already overloaded with different access
Class foo act as interface, it has a pure virtual function and also provide some public overloaded function with same name for convenience so that derived class won't need to provide them in every ...
0
votes
2answers
89 views
How can I limit class usage?
I have a list of List<object>. How can I limit that only Class1 and Class2 should be used there is list?
Class1 and Class2 are basically different. I would guess what there is basic class for ...
0
votes
0answers
48 views
“LNK2019: unresolved external symbol” for all class member functions (functions are defined in .cpp) [duplicate]
Doing an assignment where a program has to be written as object-oriented code.
EDIT: Using VS2012 command-line compiler, command "cl History.cpp -EHs"
When I attempt to compile I get the errors
...
0
votes
0answers
31 views
Code First when mapping object to database
I was reading allot about ORM & about Code First approach to design database and BOL.I have couple of questions many developer blogs and resources they use FK in their conjunction object like ...
0
votes
2answers
27 views
New() method used in class definition to return a new object of itself in Ruby
I'm studying this snippet:
def self.from_file(file_name)
new(File.readlines(file_name))
end
How does this code work? Does it only work for class methods? I understand this is supposed to return a ...
0
votes
3answers
34 views
PHP - Accessing my user class from the whole app
I am currently writing a login script because I am trying to learn PDO using OOP. I have a index.php page which only contain a login form. Then I have a User class, it looks like this:
<?php
...
2
votes
2answers
64 views
Data inheritance of subclass in Fortran 2003/2008
In Fortran 2003, if an variable is declared as PRIVATE in a superclass, the subclasses will not be able to access it. But if all the variables are declared as PUBLIC, the program will lose the ...
-1
votes
0answers
57 views
What are classes and OOP in Python [closed]
I have been learning Python 3.3 and I dont understand what are OOP/classes and how they work. I would like an explanation of their systax and their structure.

