という名前の名前空間があり、そのクラスで名前がfirst_namespace
付けられたクラスがありfirst_class
、そのクラスで名前が付けられた関数があるとしfirst_function
ます。オブジェクトを作成しましたのメインメソッドにsecond_namespace
クラスがあるもう1つがありますsecond_class
second_class
second_class sc = new second_class();
//now I wont be able to call firt_function by using the object sc
しかし、次のように最初の名前空間にある最初のクラスのオブジェクトを作成すると:
first_class fc = new first_class();
fc.first_function();//it works
私の質問は次のとおりです。それを継承と呼ぶことができますか? そうでない場合、私はそれを何と呼びますか?