Re: manipulating configuration files package, object oriented? moose?

2011-02-03 Thread Octavian Rasnita
ml or yaml.. but i kind of not like it... because it is too raw. I am learning object oriented programming and want to try out object oriented perl on this module. this is a good exercise. I looked at moose, could anyone some advice on how to design the api of the module how to make it object orie

manipulating configuration files package, object oriented? moose?

2011-02-03 Thread Jim Green
like it... because it is too raw. I am learning object oriented programming and want to try out object oriented perl on this module. this is a good exercise. I looked at moose, could anyone some advice on how to design the api of the module how to make it object oriented? even use moose? Thank you

Re: Object Oriented

2010-03-25 Thread Jeremiah Foster
On Mar 24, 2010, at 1:42 PM, Pry, Jeffrey wrote: > Does the moose page provide an OOP conceptual overview as well; if not does > anyone know where to find one? Not really. Moose is built upon Class::MOP which is a tool to manipulate object systems. Moose then goes on to build a complete, alter

Re: Object Oriented

2010-03-25 Thread Rene Schickbauer
Randal L. Schwartz wrote: "Steve" == Steve Bertrand writes: Steve> Also, quite a few years ago, I found "Learning Perl Ojbects, References Steve> and Modules" by Randal Schwartz to be quite a good primer and well worth Steve> the money. The new title of that ("new" being relative here, as in

Re: Object Oriented

2010-03-24 Thread Randal L. Schwartz
> "Steve" == Steve Bertrand writes: Steve> Also, quite a few years ago, I found "Learning Perl Ojbects, References Steve> and Modules" by Randal Schwartz to be quite a good primer and well worth Steve> the money. The new title of that ("new" being relative here, as in for the past 4 years) i

Re: Object Oriented

2010-03-24 Thread Shlomi Fish
view as well; if not > does anyone know where to find one? You can find an introduction to OOP (and in Perl) here: http://perl-begin.org/tutorials/perl-for-newbies/part3/ As I noted in a previous E-mail message, you can find more resources about OOP in Perl here: http://perl-begin.org/to

RE: Object Oriented

2010-03-24 Thread Pry, Jeffrey
- From: Damon Allen Davison [mailto:allo...@gmail.com] Sent: Wednesday, March 24, 2010 8:37 AM To: Pry, Jeffrey Subject: Re: Object Oriented On Wed, Mar 24, 2010 at 12:09 PM, Pry, Jeffrey wrote: > Does anyone know of good resource to learn object oriented Perl? Also, can > Perl be cons

Re: Object Oriented

2010-03-24 Thread Steve Bertrand
On 2010.03.24 08:09, Pry, Jeffrey wrote: > Hey, > > Does anyone know of good resource to learn object oriented Perl? Also, can > Perl be considered truly object oriented? perldoc perlobj Also, quite a few years ago, I found "Learning Perl Ojbects, References and Modules"

Re: Object Oriented

2010-03-24 Thread Shlomi Fish
On Wednesday 24 Mar 2010 14:09:19 Pry, Jeffrey wrote: > Hey, > > Does anyone know of good resource to learn object oriented Perl? Yes, see the resources at: http://perl-begin.org/topics/object-oriented/ In addition, there's also this: http://en.wikibooks.org/wiki/Programm

Object Oriented

2010-03-24 Thread Pry, Jeffrey
Hey, Does anyone know of good resource to learn object oriented Perl? Also, can Perl be considered truly object oriented? Thanks, Jeffrey IMPORTANT: The information contained in this email and/or its attachments is confidential. If you are not the intended

Re: Procedural modules in an object-oriented project

2009-08-19 Thread Peter Scott
At 06:29 AM 8/19/2009, Chas. Owens wrote: On Wed, Aug 19, 2009 at 09:03, Peter Scott wrote: snip > The Exporter isn't hard to learn, and Exporter::Simple is even easier and > prettier. Non O-O procedures should be exported. snip That last sentence should read "Non OO procedures should be export

Re: Procedural modules in an object-oriented project

2009-08-19 Thread Chas. Owens
On Wed, Aug 19, 2009 at 09:03, Peter Scott wrote: snip > The Exporter isn't hard to learn, and Exporter::Simple is even easier and > prettier.  Non O-O procedures should be exported. snip That last sentence should read "Non OO procedures should be exported on demand." Modules should not import an

Re: Procedural modules in an object-oriented project

2009-08-19 Thread Shlomi Fish
tation level, I've noticed that two of my modules have > > subroutines that only perform global tasks, and don't need to be > > object-oriented at all. > > > > Is it recommended that I stick with the overall style of the project by > > making all of the

Re: Procedural modules in an object-oriented project

2009-08-19 Thread Peter Scott
ines that only perform global tasks, and don't need to be > object-oriented at all. > > Is it recommended that I stick with the overall style of the project by > making all of the modules object-oriented, or is it better to create > procedural modules when objects are not required?

Re: Procedural modules in an object-oriented project

2009-08-18 Thread Steve Bertrand
Uri Guttman wrote: > making a basic procedural sub into a class method for no reason > means you pass useless data (the class name) and ignore it in the > sub. that to me is a poor API. Point well taken. > SB> Besides... I'm at a stage where I'd rather carry on with Perl BCP and > SB> coding

Re: Procedural modules in an object-oriented project

2009-08-18 Thread Steve Bertrand
Steve Bertrand wrote: > Jenda Krynicky wrote: >> From: Steve Bertrand >>> Is it recommended that I stick with the overall style of the project by >>> making all of the modules object-oriented, or is it better to create >>> procedural modules when objects are n

Re: Procedural modules in an object-oriented project

2009-08-18 Thread Uri Guttman
> "SB" == Steve Bertrand writes: SB> Jenda Krynicky wrote: >> >> Use whatever feels more natural to you. SB> I really think I'll stick with OO for consistency throughout, even if SB> it's just for the simple purpose of having a consistent SB> my $self = shift; SB> ...as the

Re: Procedural modules in an object-oriented project

2009-08-18 Thread Steve Bertrand
Jenda Krynicky wrote: > From: Steve Bertrand >> My ISP management project which started out as a learning experience has >> grown into a system that currently contains 10 modules. The entire >> system is object-oriented. >> >> While reviewing my POD to ensure tha

Re: Procedural modules in an object-oriented project

2009-08-18 Thread Jenda Krynicky
From: Steve Bertrand > My ISP management project which started out as a learning experience has > grown into a system that currently contains 10 modules. The entire > system is object-oriented. > > While reviewing my POD to ensure that I've been keeping it up-to-date >

Procedural modules in an object-oriented project

2009-08-18 Thread Steve Bertrand
My ISP management project which started out as a learning experience has grown into a system that currently contains 10 modules. The entire system is object-oriented. While reviewing my POD to ensure that I've been keeping it up-to-date properly, and so that I can still easily understand th

Re: Object Oriented Perl

2008-02-19 Thread Robert Hicks
Paul Lalli wrote: On Feb 18, 10:17 pm, [EMAIL PROTECTED] (Robert Hicks) wrote: Is Damian Conway's book still the best way to get a good comprehensive education about doing OO in Perl? I am a fan of Randal Schwartz's "Intermediate Perl", as well as the documentation and tutorials that come bund

Re: Object Oriented Perl

2008-02-19 Thread Robert Hicks
Rodrick Brown wrote: Just use Python *ducks* What are Python ducks? :-) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Object Oriented Perl

2008-02-19 Thread Paul Lalli
On Feb 18, 10:17 pm, [EMAIL PROTECTED] (Robert Hicks) wrote: > Is Damian Conway's book still the best way to get a good comprehensive > education about doing OO in Perl? I am a fan of Randal Schwartz's "Intermediate Perl", as well as the documentation and tutorials that come bundled with perl itse

Re: Object Oriented Perl

2008-02-18 Thread yitzle
On Feb 18, 2008 10:50 PM, Rodrick Brown <[EMAIL PROTECTED]> wrote: > Just use Python *ducks* > -- > Rodrick R. Brown > http://www.rodrickbrown.com /me gets out the hunting rifle... :P -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.per

Re: Object Oriented Perl

2008-02-18 Thread Chas. Owens
On Feb 18, 2008 10:50 PM, Rodrick Brown <[EMAIL PROTECTED]> wrote: > Just use Python *ducks* snip And which of Python's object systems should I use? *ducks as well* -- Chas. Owens wonkden.net The most important skill a programmer can have is the ability to read. -- To unsubscribe, e-mail: [EMA

Re: Object Oriented Perl

2008-02-18 Thread Rodrick Brown
Just use Python *ducks* On Feb 18, 2008 10:17 PM, Robert Hicks <[EMAIL PROTECTED]> wrote: > Is Damian Conway's book still the best way to get a good comprehensive > education about doing OO in Perl? > > Robert > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [

Object Oriented Perl

2008-02-18 Thread Robert Hicks
Is Damian Conway's book still the best way to get a good comprehensive education about doing OO in Perl? Robert -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

RE: Object oriented programming with perl

2006-07-20 Thread Shourya Sengupta
: Object oriented programming with perl On Fri, 2006-07-21 at 00:36 +0530, Shourya Sengupta wrote: > > Hi Joshua, > Can you make it a bit clear? Assuming you've written a perl module (class) called 'Widget::Factory' the actual code should be in a file called 'Widget/Fact

RE: Object oriented programming with perl

2006-07-20 Thread Joshua Colson
On Thu, 2006-07-20 at 12:19 -0700, Timothy Johnson wrote: > I think it might be clearer if you checked this doc: > > perldoc lib > > Which has a good explanation of using 'use lib' to define directories to > search for modules. Thank you Timothy. I was looking for that document (admittedly, not

RE: Object oriented programming with perl

2006-07-20 Thread Joshua Colson
On Fri, 2006-07-21 at 00:36 +0530, Shourya Sengupta wrote: > > Hi Joshua, > Can you make it a bit clear? Assuming you've written a perl module (class) called 'Widget::Factory' the actual code should be in a file called 'Widget/Factory.pm' (assuming a UNIX like system). Lets further assume that th

RE: Object oriented programming with perl

2006-07-20 Thread Timothy Johnson
hua Colson Cc: beginners@perl.org Subject: RE: Object oriented programming with perl Hi Joshua, Can you make it a bit clear? Thanks, Shourya -Original Message- From: Joshua Colson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 20, 2006 9:59 PM To: Shourya Sengupta Cc: beginners@perl.o

RE: Object oriented programming with perl

2006-07-20 Thread Shourya Sengupta
Hi Joshua, Can you make it a bit clear? Thanks, Shourya -Original Message- From: Joshua Colson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 20, 2006 9:59 PM To: Shourya Sengupta Cc: beginners@perl.org Subject: Re: Object oriented programming with perl On Thu, 2006-07-20 at 15:40

Re: Object oriented programming with perl

2006-07-20 Thread Joshua Colson
On Thu, 2006-07-20 at 15:40 +0530, Shourya Sengupta wrote: > Suppose the package is installed in a different path. > Can we then mention the full path of the package in statesments like > this? eg > > use perldoc -q lib hint: 'use lib...' -- Joshua Colson <[EMAIL PROTECTED]> -- To unsubscr

Object oriented programming with perl

2006-07-20 Thread Shourya Sengupta
In a particular perl program if we want to declare objects of a class we have to include the class at the top of the program like use The perl interpreter by default searches for the package in a specific path. (in perl/lib) Suppose the package is installed in a different path. Can we then me

Re: object-oriented perl mailing list

2006-05-13 Thread Chad Perrin
On Sat, May 13, 2006 at 05:34:32AM -0700, Randal L. Schwartz wrote: > > Some of us got very tired of the tongue-twister title from the previous > edition, so we optimized the title. Finally. Thankfully. I don't blame you, though tongue-twisters seem to fit well (conceptually and euphemistically

Re: object-oriented perl mailing list

2006-05-13 Thread Randal L. Schwartz
> ""Ryan" == "Ryan Frantz" <[EMAIL PROTECTED]> writes: >> . . . and Tom Phoenix. Also, it has sorta been replaced in newer >> editions by a book called "Intermediate Perl", which is reportedly >> pretty much just a new edition of the same book -- though I haven't >> looked through it to doubl

RE: object-oriented perl mailing list

2006-05-12 Thread Ryan Frantz
> -Original Message- > From: Chad Perrin [mailto:[EMAIL PROTECTED] > Sent: Friday, May 12, 2006 2:45 PM > To: beginners@perl.org > Subject: Re: object-oriented perl mailing list > > On Sat, May 13, 2006 at 12:05:46AM +0800, Jeff Pang wrote: > > Don't

Re: object-oriented perl mailing list

2006-05-12 Thread Chad Perrin
On Sat, May 13, 2006 at 12:05:46AM +0800, Jeff Pang wrote: > Don't ask too much,just read and write more pls.I would suggest you read the > book of 'Learning Perl Objects, References & Modules' which is written by > Randal L. Schwartz . . . and Tom Phoenix. Also, it has sorta been replaced in n

Re: object-oriented perl mailing list

2006-05-12 Thread Jeff Pang
;From: chen li <[EMAIL PROTECTED]> >Sent: May 12, 2006 9:08 PM >To: beginners@perl.org >Subject: object-oriented perl mailing list > >Hi all, > >I just wonder if there is a forum of objecte-oriented >perl for the begginer. > > >Thanks, > >Li > >___

Re: object-oriented perl mailing list

2006-05-12 Thread Peter Scott
On Fri, 12 May 2006 06:08:51 -0700, chen li wrote: > Hi all, > > I just wonder if there is a forum of objecte-oriented > perl for the begginer. There's always http://www.manning-sandbox.com/forum.jspa?forumID=45 -- Peter Scott http://www.perlmedic.com/ http://www.perldebugged.com/ -- To uns

object-oriented perl mailing list

2006-05-12 Thread chen li
Hi all, I just wonder if there is a forum of objecte-oriented perl for the begginer. Thanks, Li __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTE

Re: object oriented programming in perl

2005-06-20 Thread Randal L. Schwartz
> "Wiggins" == Wiggins d'Anconia <[EMAIL PROTECTED]> writes: Wiggins> Unless you are already familar with OOP concepts you are Wiggins> better off with the LPORM book than Conway's, as Object Wiggins> Oriented Perl is more difficult to read without already Wiggins> knowing a lot of the OOP te

Re: object oriented programming in perl

2005-06-20 Thread Wiggins d'Anconia
Randal L. Schwartz wrote: >>>>>>"Aditi" == Aditi Gupta <[EMAIL PROTECTED]> writes: > > > Aditi> I've been doing some general perl coding(not too complicated) > Aditi> for past some time but now i want to learn the object oriented >

Re: object oriented programming in perl

2005-06-20 Thread Randal L. Schwartz
>>>>> "Aditi" == Aditi Gupta <[EMAIL PROTECTED]> writes: Aditi> I've been doing some general perl coding(not too complicated) Aditi> for past some time but now i want to learn the object oriented Aditi> way of programming. I've several books in

RE: object oriented programming in perl

2005-06-20 Thread Thomas Bätzler
Aditi Gupta <[EMAIL PROTECTED]> asked: > I've been doing some general perl coding(not too complicated) > for past some time but now i want to learn the object > oriented way of programming. I've several books including > Perl cookbook, Programming Perl and Beginn

object oriented programming in perl

2005-06-20 Thread Aditi Gupta
Hi everybody, I've been doing some general perl coding(not too complicated) for past some time but now i want to learn the object oriented way of programming. I've several books including Perl cookbook, Programming Perl and Beginning Perl (by Simon Cozens).. but now i'm confus

Re: packages object oriented

2003-09-13 Thread Rob Dixon
"R. Joseph Newton" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "R. Joseph Newton" wrote: > > > > > sub initialize { > > my $self = shift; # references the oblect. > > my ($title, $purpose, $text) = @_; > > > > $self->{'Title'} = $title; > > $self->{'Purpose'} =

Re: packages object oriented

2003-09-12 Thread R. Joseph Newton
"R. Joseph Newton" wrote: > > sub initialize { > my $self = shift; # references the oblect. > my ($title, $purpose, $text) = @_; > > $self->{'Title'} = $title; > $self->{'Purpose'} = $purpose; > push @{$self->{'Text'}}, $_ foreach @$text; > return $self; > } Sorry, ther

Re: packages object oriented

2003-09-12 Thread R. Joseph Newton
Eric Walker wrote: > I have a small grasp of the concept, What concept? We don't know what you are responding to. > but what I am doing involves a > better understanding than I have. I am doing a project that will allow > a user to build a particular file called a do file. Its used in a route

Re: packages object oriented

2003-09-12 Thread Randal L. Schwartz
>>>>> "Eric" == Eric Walker <[EMAIL PROTECTED]> writes: Eric> Does anyone have a good hold of how to do object oriented programming in Eric> perl? Maybe a few lines of code as examples? "perldoc perlboot". Or, if you like the feel of paper, "

Re: packages object oriented

2003-09-12 Thread Eric Walker
, Steve Grazzini wrote: On Fri, Sep 12, 2003 at 08:32:38AM -0600, Eric Walker wrote: > Does anyone have a good hold of how to do object oriented programming > in perl? Maybe a few lines of code as examples? There are some tutorials in the standard docs. $ p

Re: packages object oriented

2003-09-12 Thread Steve Grazzini
On Fri, Sep 12, 2003 at 08:32:38AM -0600, Eric Walker wrote: > Does anyone have a good hold of how to do object oriented programming > in perl? Maybe a few lines of code as examples? There are some tutorials in the standard docs. $ perldoc perlobj $ perldoc perlboot $ p

RE: packages object oriented

2003-09-12 Thread NYIMI Jose (BMB)
Ch3 of "OO Perl" book is free from http://www.manning.com/getpage.html?project=conway&filename=Chapters.html José. -Original Message- From: Eric Walker [mailto:[EMAIL PROTECTED] Sent: Friday, September 12, 2003 4:33 PM To: perlgroup Subject: packages object oriented Does

Re: packages object oriented

2003-09-12 Thread James Edward Gray II
ure changes and maintainance. Hope this helps.. EDUB On Fri, 2003-09-12 at 08:42, James Edward Gray II wrote: On Friday, September 12, 2003, at 09:32 AM, Eric Walker wrote: Does anyone have a good hold of how to do object oriented programming in perl? Maybe a few lines of code as examples

Re: packages object oriented

2003-09-12 Thread Eric Walker
, James Edward Gray II wrote: On Friday, September 12, 2003, at 09:32 AM, Eric Walker wrote: > Does anyone have a good hold of how to do object oriented programming > in > perl? Maybe a few lines of code as examples? I feel my grasp of the concept is st

Re: packages object oriented

2003-09-12 Thread James Edward Gray II
On Friday, September 12, 2003, at 09:32 AM, Eric Walker wrote: Does anyone have a good hold of how to do object oriented programming in perl? Maybe a few lines of code as examples? I feel my grasp of the concept is strong, but perhaps myself, and others, could help more if we knew what you&#x

RE: packages object oriented

2003-09-12 Thread Halkyard, Jim
Have a look at Tom's Object Oriented Tutorial man perltoot or perldoc perltoot Jim -Original Message- From: Eric Walker [mailto:[EMAIL PROTECTED] Sent: 12 September 2003 15:33 To: perlgroup Subject: packages object oriented Does anyone have a good hold of how to do object ori

packages object oriented

2003-09-12 Thread Eric Walker
Does anyone have a good hold of how to do object oriented programming in perl? Maybe a few lines of code as examples? EDUB

Re: Perl or Object Oriented Perl?

2002-09-21 Thread Randal L. Schwartz
> "wiggins" == wiggins <[EMAIL PROTECTED]> writes: wiggins> I am currently and finally working my way through the OOP wiggins> Perl book by Conway and a few of the things seem a little wiggins> dated with respect to how Perl can handle things, and the wiggins> preferred method at least from

Re: Perl or Object Oriented Perl?

2002-09-17 Thread drieux
; I have some > knowledge of Object Oriented Programming in Java. > > Which aspect of perl should I begin with? Perl Mod, OOP??? etc. > Your opinions will be appreciated. [..] A part of the problem is what are you planning to use your Perl Code to do? One of the strongest asp

RE: Perl or Object Oriented Perl?

2002-09-17 Thread NYIMI Jose (BMB)
You made a very good choice !. I have this book and learned a lot from it. As said, there is a refresh chapiter about basics on Perl so don't waste a lot time by starting with "Learning Perl" book and fourth ... Just go ahead "Object Oriented Perl" since you are

Re: Perl or Object Oriented Perl?

2002-09-17 Thread mmaunder
r Rai wrote: > > > > > > go for [1] Learning Perl > > > [2] Programming Perl > > > > > > Both are published by Oreilly > > > > > > --- [EMAIL PROTECTED] wrote: > Hello > > > > > > > > I ordered a book(Pe

Re: Perl or Object Oriented Perl?

2002-09-17 Thread wiggins
2] Programming Perl > > > > Both are published by Oreilly > > > > --- [EMAIL PROTECTED] wrote: > Hello > > > > > > I ordered a book(Perl Object Oriented Programming by > > > Damian Conway) to > > > learn Perl from scratch. But I

Re: Perl or Object Oriented Perl?

2002-09-17 Thread mmaunder
gt; [2] Programming Perl > > Both are published by Oreilly > > --- [EMAIL PROTECTED] wrote: > Hello > > > > I ordered a book(Perl Object Oriented Programming by > > Damian Conway) to > > learn Perl from scratch. But I'm not sure whether it > > is r

Re: Perl or Object Oriented Perl?

2002-09-17 Thread Dharmender Rai
go for [1] Learning Perl [2] Programming Perl Both are published by Oreilly --- [EMAIL PROTECTED] wrote: > Hello > > I ordered a book(Perl Object Oriented Programming by > Damian Conway) to > learn Perl from scratch. But I'm not sure whether it > is right to begin &

Perl or Object Oriented Perl?

2002-09-17 Thread samiyo
Hello I ordered a book(Perl Object Oriented Programming by Damian Conway) to learn Perl from scratch. But I'm not sure whether it is right to begin learning Perl with the Object Oriented aspect of it. I have some knowledge of Object Oriented Programming in Java. Which aspect of perl sho

RE: Object-Oriented DBMS

2002-07-02 Thread Hanson, Robert
June 30, 2002 1:36 PM To: [EMAIL PROTECTED] Subject: Object-Oriented DBMS Hi, I know an RDBMS which we can use with perl, this RDBMS is MySQL. But i'm trying to find an OODBMS where we can use perl with. Any advice is appreciated Anthony -- To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: Object-Oriented DBMS

2002-07-02 Thread drieux
On Sunday, June 30, 2002, at 10:35 , anthony wrote: > I know an RDBMS which we can use with perl, this RDBMS is MySQL. > But i'm trying to find an OODBMS where we can use perl with. > Any advice is appreciated amongst the players in the space from a simple google search one will find:

Object-Oriented DBMS

2002-06-30 Thread anthony
Hi, I know an RDBMS which we can use with perl, this RDBMS is MySQL. But i'm trying to find an OODBMS where we can use perl with. Any advice is appreciated Anthony -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: looking for book on object oriented perl

2002-03-18 Thread Alfred Vahau
Hi Paul, (1) The m aterial referred to forms some of the chapters of Conway's book (2) The contents of the book are available from http://www.manning.com/conway There are Sample Chapters 4 and 11 available in pdf. I think it is a good book to start learning OO and its implementation in perl. T

Re: looking for book on object oriented perl

2002-03-18 Thread Paul Tremblay
s you are already grounded in oop. I understand what you mean when you say that you have to have some theory before tackling object oriented programming. The web page I looked at, however, went on and on without ever trying to ground the theory in practice. I think the book will be better. Paul O

Re: looking for book on object oriented perl

2002-03-18 Thread Jonathan E. Paton
with > > perl code. "This is a series of extracts from Object Orientated Perl", and it looks familar enough but isn't any one chapter - it's a preview as it were. > In my opinion, the balanace between theory > and technique in the book is good, you really > can&

Re: looking for book on object oriented perl

2002-03-18 Thread victor
In my opinion, the balanace between theory and technique in the book is good, you really can't expect a book about object oriented to be without any theory at all right? I was very fresh on OO perl when I first read the book and I did found a lot of good tips and advice from it. If yo

looking for book on object oriented perl

2002-03-18 Thread Paul Tremblay
on on various aspects of linux, then you will think books like *Learning Perl* a masterpiece!) However, I now believe I should learn at least some of the concepts of object oriented perl, especially since I want to use modules like XML::Parser. My search on amazon.com came up with a book called *O

Re: mailing list for Object Oriented Perl

2002-01-04 Thread Peter Scott
At 05:46 PM 1/3/02 -0800, Pradeep Sethi wrote: >Hi All, > >I was wondering, is there a mailing list dedicated to Obejct Oriented Perl ? Closest thing I know of is the forum for people who've read Damian Conway's book: http://www.manning.com/Conway/forum.html. -- Peter Scott Pacific Systems Des

Re: mailing list for Object Oriented Perl

2002-01-03 Thread Casey West
On Jan 03, 2002 at 05:46 -0800, Pradeep Sethi took the soap box and proclaimed: : Hi All, : : I was wondering, is there a mailing list dedicated to Obejct Oriented Perl ? Well, the short answer is no. The long answer is, see if http://lists.perl.org has what you want. And a good answer is, why

mailing list for Object Oriented Perl

2002-01-03 Thread Pradeep Sethi
Hi All, I was wondering, is there a mailing list dedicated to Obejct Oriented Perl ? Thanks Prad -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Updating class variables - object oriented Perl

2001-07-18 Thread iain truskett
* Michael Fowler ([EMAIL PROTECTED]) [18 Jul 2001 18:24]: [...] > _Object Oriented Perl_ gets pretty advanced, but it does have chapters > on basic OO in Perl, and basic OO in general. It would probably be more accurate to say that _Object Oriented Perl_ takes one from knowing not necessarily an

Re: Updating class variables - object oriented Perl

2001-07-18 Thread Paul Johnson
On Wed, Jul 18, 2001 at 03:59:14PM -, [EMAIL PROTECTED] wrote: > > #how to set an accessmethod > sub accessmethod{ > > my $self = shift; > > if (@_) { $self->[ACCESS_METHOD] = shift } > return $self->[ACCESS_METHOD]; > > }#end accessmethod > > > #here the problem occurs when trying to up

Re: Updating class variables - object oriented Perl

2001-07-18 Thread Michael Fowler
On Wed, Jul 18, 2001 at 03:59:14PM -, [EMAIL PROTECTED] wrote: > I am doing some Object Oriented programming in Perl. > I have a problem getting the instance variables in some of my > classes updated. This is probably your problem right here. Instance variables are, by defini

Re: Updating class variables - object oriented Perl

2001-07-18 Thread Brett W. McCoy
On 18 Jul 2001 [EMAIL PROTECTED] wrote: > I am doing some Object Oriented programming in Perl. > > #my class constructor > sub new { > > my $invocant = shift; > my $class = ref($invocant) || $invocant; > my $self = []; > $self ->[ACCESS_METHOD] = undef; > $s

Updating class variables - object oriented Perl

2001-07-18 Thread sara
I am doing some Object Oriented programming in Perl. I have a problem getting the instance variables in some of my classes updated. If I update one variable in a class that contains several instance variables, then the other variable does not keep its original value, it gets the same value

OOP appetizer (Object Oriented Programming) (was Re: Re[4]: Reformating text)

2001-06-16 Thread Me
> > > My next direction is OOP, but I have found it to be a > > > little beyond my grasp each time I try. Maybe with this > > > list's help I can get it. > wow finaly an explanation of OOP that I can understand ! > what an elegant way of explaining it , thanks Thanks for the thanks, Greg a