scala:如何建立基本的父子关系模型

时间:2012-04-21 20:09:50

标签: oop scala relationship

我有一个拥有多个产品的品牌类

在产品类别中,我希望有一个品牌参考,如下所示:

case class Brand(val name:String, val products: List[Product])

case class Product(val name: String, val brand: Brand)

我怎样才能将这些课程包装好?

我的意思是,除非我有品牌否则我无法创造产品

除非我有产品清单(因为Brand.products是val),否则我无法创建品牌

建模这种关系的最佳方法是什么?

2 个答案:

答案 0 :(得分:6)

我会质疑为什么要重复这些信息,说明哪些产品与列表和每个产品中的哪个品牌有关。

不过,你可以这样做:

class Brand(val name: String, ps: => List[Product]) {
  lazy val products = ps
  override def toString = "Brand("+name+", "+products+")" 
}

class Product(val name: String, b: => Brand) { 
  lazy val brand = b
  override def toString = "Product("+name+", "+brand.name+")"
}

lazy val p1: Product = new Product("fish", birdseye)
lazy val p2: Product = new Product("peas", birdseye)
lazy val birdseye = new Brand("BirdsEye", List(p1, p2))

println(birdseye) 
  //Brand(BirdsEye, List(Product(fish, BirdsEye), Product(peas, BirdsEye)))

不幸的是,似乎不允许使用名称类来获取案例类。

另请参阅此类似问题:Instantiating immutable paired objects

答案 1 :(得分:3)

既然你的问题是关于这种关系的模型,我会说为什么不像我们在数据库中做的那样对它们进行建模?将实体和关系分开。

val productsOfBrand: Map[Brand, List[Product]] = {
    // Initial your brand to products mapping here, using var
    // or mutable map to construct the relation is fine, since
    // it is limit to this scope, and transparent to the outside
    // world
}
case class Brand(val name:String){
    def products = productsOfBrand.get(this).getOrElse(Nil)
}
case class Product(val name: String, val brand: Brand) // If you really need that brand reference