Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の英語でごめんなさい。
私のコード...
class MyClass NewFood = Food def index @items = NewFood.all end end
@items.firstはFoodオブジェクトですが、NewFoodオブジェクトを取得したい
@items.first
手助け?
NewFoodオブジェクトが欲しいと言うのは意味がありません。MyClassとの 2 つのクラスしかありませんFood。定数は;MyClass::NewFoodを指すだけです。Foodその定数を定義したからといって、Foodクラスのインスタンスが異なる動作を開始し、それらのクラスがNewFood.
NewFood
MyClass
Food
MyClass::NewFood
ズームアウトして、全体像を教えていただけますか? 何を達成しようとしていますか?あなたが解決しようとしている現実の問題は何ですか?おそらく、それを解決するためのより良い方法を提供できるでしょう。