ruby oo fundamentals attribute accessors lab sgharms 测试 webdev fund 源码
喵喵猫 目标 练习定义课程 使用宏创建setter和getter方法 介绍 在本实验中,您将创建Cat类。 猫的每个实例都应该有一个名字并且能够喵喵叫。 换句话说,我应该能够: maru = Cat . new maru . name = "Maru" maru . name # => "Maru" maru . meow # "meow!" # => nil 指示 运行测试套件以开始使用。 您将在lib/meowing_cat.rb文件中编写所有代码。 定义一个称为Cat的类。 使用attr_accessor宏为猫的名字创建一个setter和getter方法。 编写一个方法.meow ,输出“ meow!”。 在Cat实例上调用时,使用puts方法将其连接到终端。 在Learn.co上查看,然后开始免费学习编码。
文件列表
ruby-oo-fundamentals-attribute-accessors-lab-sgharms-test-webdev-fund-master.zip
(预估有个9文件)
ruby-oo-fundamentals-attribute-accessors-lab-sgharms-test-webdev-fund-master
CONTRIBUTING.md
2KB
.rspec
30B
spec
meowing_cat_spec.rb
755B
spec_helper.rb
4KB
LICENSE.md
1KB
.gitignore
642B
.learn
123B
lib
暂无评论