繁体   English   中英

埃菲尔:有没有一种方法可以在没有任何附加实例的情况下测试类的给定泛型参数?

[英]Eiffel: Is there a way to test a given Generic parameter of a Class without any attached instance of it?

有没有办法在没有任何附加实例的情况下测试类的给定泛型参数?

class BAG[G -> MOUSE]

feature -- 

    discriminate
        do
            if G.conforms_to (MAMMAL) then
                io.putstring ("you gave me a real animal")
            elseif G.conforms_to (COMPUTER_ACCESSORY) then
                io.putstring ("Seems you don't like animals such as computers")
            else
                io.pustring ("Still dont know what you are dealing with")
            end
        end

您几乎钉死了它。 缺少的部分是花括号和括号:

        if ({G}).conforms_to ({MAMMAL}) then
            io.put_string ("You gave me a real animal.")
        elseif ({G}).conforms_to ({COMPUTER_ACCESSORY}) then
            io.put_string ("Seems you don't like animals such as computers.")
        else
            io.put_string ("Still don't know what you are dealing with.")
        end

说明:

  1. {FOO} (其中FOO是类型名称)代表类型对象。 它适用于任何类型,包括形式泛型,例如{G}{MAMMAL}
  2. 语法{FOO}.bar保留用于非对象调用。 但是这里我们要对类型对象进行对象调用。 因此, {G}括在括号中: ({G}).conforms_to {G}.conforms_to (而不是{G}.conforms_to )。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM