[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Representing a complex object

chandra shekhar G

3/12/2007 3:44:00 PM

Hi

we are facing trouble in implementing a complex object in ruby,
like say we have a class B which has a member int and a member string,
we have to implement a class A whose members are an array of objects of
B
how is it done, pls do respond.

Regards
chandra shekhar G

--
Posted via http://www.ruby-....

4 Answers

Drew Olson

3/12/2007 3:51:00 PM

0

chandra shekhar G wrote:
> Hi
>
> we are facing trouble in implementing a complex object in ruby,
> like say we have a class B which has a member int and a member string,
> we have to implement a class A whose members are an array of objects of
> B
> how is it done, pls do respond.
>
> Regards
> chandra shekhar G

Do you really find this to be "complex"? It seems relatively straight
forward...

class B
def initialize(my_int,my_string)
@my_int = my_int
@my_string = my_string
end
end

class A
def initialize
@my_objects = []
end

def add_item(item)
@my_objects << item
end
end

my_b = B.new(10,"foo")
my_a = A.new
my_a.add_item my_b

--
Posted via http://www.ruby-....

Gavin Kistner

3/12/2007 4:22:00 PM

0

On Mar 12, 9:44 am, chandra shekhar G <ychandru...@yahoo.com> wrote:
> we are facing trouble in implementing a complex object in ruby,
> like say we have a class B which has a member int and a member string,
> we have to implement a class A whose members are an array of objects of
> B
> how is it done, pls do respond.

Ruby does not care what type of value each variable is. Here's a very
simple way to do what you want:

B = Struct.new( :my_int, :my_string ) # A very simple way to create a
class
# that is just a container for
simple properties

b1 = B.new( 12, "hello" )
b2 = B.new( 42, "world" )
my_array = [ b1, b2 ] # An array of B instances

b3 = B.new( 54, "foobar" )
my_array << b3 # append one more value to the
array

Robert Klemme

3/12/2007 8:53:00 PM

0

On 12.03.2007 16:44, chandra shekhar G wrote:
> we are facing trouble in implementing a complex object in ruby,
> like say we have a class B which has a member int and a member string,
> we have to implement a class A whose members are an array of objects of
> B
> how is it done, pls do respond.

Just a curious question: what do you need that for? What problem are
you trying to solve?

Kind regards

robert

chandra shekhar G

3/16/2007 9:47:00 AM

0

hi

thanks for the response,
the issue is we have an Composite object which has two types of objects
in it
first is a struct containing an int and a string
second is an array of objects where each is a struct containing an int
and a string

when we try to implement this and return it from a method,
the api throws error saying "dont know how to cast"

any information on the same is welcome

thanks

--
Posted via http://www.ruby-....