文件名称:Ruby的对象有很多通过实验室v-000
文件大小:13KB
文件格式:ZIP
更新时间:2024-03-09 17:55:39
Ruby
Ruby对象关系:具有许多通则的实验室 目标 编写通过“ has-many-through”关系相互关联的类。 编写使用“具有多次通过”关系来传递有关对象的信息的方法。 概述 在本实验中,我们将处理两组三个类。 我们有一个Song , Artist和Genre课。 歌曲属于艺术家,属于流派。 一个流派有很多歌曲,而一个艺术家有很多歌曲。 一个艺术家通过其歌曲具有多种流派,而一种类型则通过其歌曲具有多种流派。 我们还有Appointment , Doctor和Patient课程。 Appointment属于Patient和Doctor 。 Doctor有很多Appointment而Patient有很多Appointment 。 一个Doctor有很多Patient通过以S Appointment S和Patient有很多Doctor通过以S Appointment秒。 指示 从Arti
【文件预览】:
ruby-objects-has-many-through-lab-v-000-master
----CONTRIBUTING.md(2KB)
----Gemfile(86B)
----Gemfile.lock(626B)
----.rspec(53B)
----spec()
--------01_artist_spec.rb(2KB)
--------06_patient_spec.rb(2KB)
--------02_song_spec.rb(1KB)
--------04_doctor_spec.rb(2KB)
--------05_appointment_spec.rb(1KB)
--------03_genre_spec.rb(1KB)
--------spec_helper.rb(4KB)
----LICENSE.md(1KB)
----.gitignore(642B)
----.learn(109B)
----lib()
--------artist.rb(0B)
--------appointment.rb(0B)
--------doctor.rb(0B)
--------patient.rb(0B)
--------song.rb(0B)
--------genre.rb(0B)
----README.md(5KB)