Representing a complex object

C

chandra shekhar G

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
 
D

Drew Olson

chandra said:
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
 
P

Phrogz

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
 
R

Robert Klemme

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
 
C

Chandra Shekar

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top