DMD拒绝实例化模板:不是模板声明



i在D中有一个模板类,将另一个模板作为参数,因此开始:

class RuleVars(alias RuleType, RuleRange, SubstitutionRange)
if (__traits(isTemplate, RuleType)) {
     import std.range.primitives;
     import std.traits;
     import Capsicum.PatternMatching.Engine;
     private {
        static if (isAssociativeArray!RuleRange) {
            alias RuleType = ElementType!(typeof(ruleRange.values));
         } else {
            alias RuleType = ElementType!RuleRange;
         }
        static if (isAssociativeArray!SubstitutionRange) {
            alias SubstitutionType = ElementType!(typeof(ruleRange.values));
        } else {
            alias RuleType = ElementType!RuleRange;
        }
        alias MatchingPolicy = RuleType!(Element, RuleElement);
...

要注意的重要一件事是,如果LuleType不是模板,则类将无法实例化。作为必要的,我有一个创建此类实例的函数:

RuleVars!(RuleType, RuleRange, SubstitutionRange) CreateRuleVars(alias  RuleType, RuleRange, SubstitutionRange)(RuleRange leftHandSide, SubstitutionRange rightHandSide) {
    return new RuleVars!(RuleType, RuleRange, SubstitutionRange)(leftHandSide, rightHandSide);
}

但是,当我尝试将类似的班级进行分配时:

CreateRuleVars!UnboundRules([0 : 'a', 2 : 'b', 4 : 'a', 6 : 'b'],
            [1 :'a', 3 : 'a', 4 : 'b', 6 : 'b'])

我有以下错误:

sourceCapsicumPatternMatchingRuleSet.d(25,26): Error: template instance RuleType!(Element, RuleElement) RuleType is not a template declaration, it is a alias
sourceCapsicumPatternMatchingRuleSet.d(73,1): Error: template instance Capsicum.PatternMatching.RuleSet.RuleVars!(UnboundRules, char[int], char[int]) error instantiating
sourceCapsicumPatternMatchingRuleSet.d(127,31):        instantiated from here: CreateRuleVars!(UnboundRules, char[int], char[int])

它在抱怨这一特定行:

    alias MatchingPolicy = RuleType!(Element, RuleElement);

在此传递的特定模板被证明是在使用和实例化时可行的,因此这不是问题。它显然也是一个模板,否则模板参数匹配将失败。官方D文章显示,模板可以作为模板参数传递:

class Foo(T, alias C)
{
    C!(T) x;
}

据我所知,我做得正确。有什么想法吗?

问题是这些行:

alias RuleType = ElementType!(typeof(ruleRange.values));

您重新定义了隐藏参数的本地符号RuleType,因此随后的行是指该本地别名而不是要使用的参数。

现在,有趣的是,这可能是编译器中的诊断错误。如果您使用常规参数做类似的事情:

    void main(string[] args) {
            int args;
    }

编译器将标记为:

Error: variable args is shadowing variable aa.sub.main.args

因为这几乎可以肯定是一个错误;您肯定打算使用两个单独的名称,因此您仍然可以参考该参数(否则您只能引用本地变量!(。但似乎编译器没有对模板参数执行此类测试。

相关内容

  • 没有找到相关文章

最新更新