473,395 Members | 1,443 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

OOP: How to implement listing al 'Employees'.

I was just wondering.

What if you have a 'Employees' class and you want to list all the
employees. Currenlty i'm seeing to possibilities:

- create a 'listAll' function inside the class which returns all the
employees in a array.
- create multiple instances, putting them in a array, by calling the
Employees class multiple times in a loop (thus not creating a listAll
function in the class).

What is the better way of doing this? And should a class always
reference only on 'item'?

Thank in advance.
Dec 28 '07 #1
8 1634
Petar wrote:
What is the better way of doing this? And should a class always
reference only on 'item'?
It fully depends on what you want to do in your program. If you just
want to have a list of employees, a list or dict will suffice. If
you need a full-fledged employee database, an "Employees" class may
be a good API.

Regards,
Björn

--
BOFH excuse #83:

Support staff hung over, send aspirin and come back LATER.

Dec 28 '07 #2
On 28 dec, 13:40, Bjoern Schliessmann <usenet-
mail-0306.20.chr0n...@spamgourmet.comwrote:
Petar wrote:
What is the better way of doing this? And should a class always
reference only on 'item'?

It fully depends on what you want to do in your program. If you just
want to have a list of employees, a list or dict will suffice. If
you need a full-fledged employee database, an "Employees" class may
be a good API.

Regards,

Björn

--
BOFH excuse #83:

Support staff hung over, send aspirin and come back LATER.
It's a pure hypothetical question about where to put the function for
the list of employees when already having a Employee class.

Do I make it a method of the class, or do i create a instance of the
class for every employee (sitting inside a list)?
Dec 28 '07 #3
Bjoern Schliessmann a écrit :
Petar wrote:
>What is the better way of doing this? And should a class always
reference only on 'item'?

It fully depends on what you want to do in your program. If you just
want to have a list of employees, a list or dict will suffice. If
you need a full-fledged employee database, an "Employees" class may
be a good API.
If you need a full-fledged employee database, a RDBMS may be a good API.
And if you insist on having it the OO way, have a look at SQLAlchemy.

My 2 cents...
Dec 28 '07 #4
Petar a écrit :
On 28 dec, 13:40, Bjoern Schliessmann <usenet-
mail-0306.20.chr0n...@spamgourmet.comwrote:
>>Petar wrote:
>>>What is the better way of doing this? And should a class always
reference only on 'item'?

It fully depends on what you want to do in your program. If you just
want to have a list of employees, a list or dict will suffice. If
you need a full-fledged employee database, an "Employees" class may
be a good API.
(snip)
>
It's a pure hypothetical question about where to put the function for
the list of employees when already having a Employee class.
The problem with "pure hypothetical" questions is that they usually have
no single good answer, and sometimes even no answer at all.

Now since you're talking database, the most common patterns seems to
have either some YourDomainClassNameHere methods to query instances, or
some module/singleton object providing such querying interfaces for the
whole app (or FWIW to provide both, the first calling on the second...).
Do I make it a method of the class, or do i create a instance of the
class for every employee (sitting inside a list)?
If you have an Employee class, I don't get how you would avoid creating
an instance for each and every, well, instance ? Unless you're thinking
about something like MS "recordsets" ? But then, you don't need any
domain class at all...
Dec 28 '07 #5
Petar a écrit :
(snip)
should a class always
reference only on 'item'?
???

I'm afraid I didn't get this part of the question.

Dec 28 '07 #6
On 28 dec, 19:42, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:
On Fri, 28 Dec 2007 04:05:59 -0800 (PST), Petar <peros...@gmail.com>
declaimed the following in comp.lang.python:
I was just wondering.
What if you have a 'Employees' class and you want to list all the
employees. Currenlty i'm seeing to possibilities:
- create a 'listAll' function inside the class which returns all the
employees in a array.
- create multiple instances, putting them in a array, by calling the
Employees class multiple times in a loop (thus not creating a listAll
function in the class).
What is the better way of doing this? And should a class always
reference only on 'item'?

* * * * Bottom-up responses...

* * * * Unless you are contaminated by Java's need for a class to hold
static functions, classes are just templates for an undefined object.
You create an instance of the class to create a defined object. It is
not common in Python to create a class that is not meant to be
instantiated at least once (something that is just static methods is
probably easier implemented as an import module with plain functions and
module level globals).

* * * * Now, by "name", an "Employees" (plural s) class, to me, implies a
class to represent a group of employees -- as a group! It would NOT have
methods or members (both of which are just attributes in generic Python
hissing) that refer to information about any specific employee -- such
information should be part of an "Employee" (no S) class.

aDept = Employees(dept="Finance")
aDept.manager = Employee(name="John Dont", ID=3141596, phone="123-4567")
aDept.addEmployee(Employee(name=....))
aDept.addEmployee(Employee(...))
...
* * * * Note that this does not enforce any particular storage concept. The
Employees (with the S) class could be using a list to store each
employee, or a dictionary (maybe keyed by ID), or even an RDBM with a
join (where one has tables for, say, department, employee, and
intersection linking department to employee):

select e.* from employees as e
inner join dept_employee as de
on de.empID = e.ID
inner join departments as d
on d.id = de.deptID
where d.name = "Finance";

aBody = aDept.employee(id=....)

aDept.removeEmployee(id=...)

aDept.printEmployees()

* * * * If all you need is a "list" of raw employees, with no meaning
associated to the list... Then just use a list...

aList = []
aList.append(Employee(name=...))
aList.append(Employee(...))

for e in aList:
* * * * e.printEmployee()
--
* * * * Wulfraed * * * *Dennis Lee Bieber * * * * * * * KD6MOG
* * * * wlfr...@ix.netcom.com * * * * * * wulfr...@bestiaria.com
* * * * * * * * HTTP://wlfraed.home.netcom.com/
* * * * (Bestiaria Support Staff: * * * * * * * web-a...@bestiaria.com)
* * * * * * * * HTTP://www.bestiaria.com/
I'm sorry if my question wasn't clear enough. But I think it has been
answered.

Let me explain how I got to this question. I had written een Article
class which handled the articles that I had. On a certain page I
wanted to show all the articles. That got me wondering about what to
do. Should I make a method in my Article.class which returned multiple
articles, or should I just use my current Article.class and fill a
list (with a loop) with articles. The first solution thus meaning
writing another method, the latter method to just use the current
Article.class and call it multiple times.

The post of Dennis made me realize of another solution though. To
create another class called Articles which return multiple articles.
The only problem I forsee with this that's it's gonna be a very empty
class.

Thank you all for your response, it has pointed me in the right
direction.

Dec 29 '07 #7
On Sat, 29 Dec 2007 01:53:38 -0800, Petar wrote:
The post of Dennis made me realize of another solution though. To
create another class called Articles which return multiple articles.
The only problem I forsee with this that's it's gonna be a very empty
class.
Then maybe it should not be a class. Maybe a function returning
`Article`\s would be enough. This is not Java, not everything has to be
stuffed into classes.

Ciao,
Marc 'BlackJack' Rintsch
Dec 29 '07 #8
On Dec 29, 1:53 am, Petar <peros...@gmail.comwrote:
Let me explain how I got to this question. I had written een Article
class which handled the articles that I had. On a certain page I
wanted to show all the articles. That got me wondering about what to
do. Should I make a method in my Article.class which returned multiple
articles, or should I just use my current Article.class and fill a
list (with a loop) with articles. The first solution thus meaning
writing another method, the latter method to just use the current
Article.class and call it multiple times.
A class method would be ideal for this if you have no other reason to
create an Articles class:

@classmethod
def all(class_):
ret = []
for a in THE_ARTICLES:
article = class_(a)
ret.append(article)
return ret

Definitely don't use an instance method, which is expected to operate
on one article without making additional Article instances.

Mark 'Blackjack' Rintsch wrote:
Then maybe it should not be a class. Maybe a function returning
`Article`\s would be enough. This is not Java, not everything
has to be stuffed into classes.
True, but this function is logically related to the Article class, so
it's convenient to put them together. Then the user can just "from __
import Article" rather than "from __ import Article, get_all_articles,
what_was_that_other_function?".
Dec 31 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: RSH | last post by:
I am really trying to grasp the concept of OOP as it applies to C#. I am looking at trying to set up a simple Employee Class but I am having trouble conceptualizing what this class should look...
6
by: RSH | last post by:
I am still trying to grasp the use of real world Objects and how to conceptualize them using a business scenerio. What I have below is an outline that I am wrestling with trying to figure out a...
12
by: RSH | last post by:
I am still trying to grasp the use of real world Objects and how to conceptualize them using a business scenerio. What I have below is an outline that I am wrestling with trying to figure out a...
3
by: Scott Stark | last post by:
Hello, I'm trying to get a better handle on OOP programming principles in VB.NET. Forgive me if this question is sort of basic, but here's what I want to do. I have a collection of Employee...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.