English 中文(简体)
字段干扰Scala动态特性的方法解析?
原标题:Fields interfering with method resolution for Scala Dynamic trait?

作为我第一次涉足DynamicScala领域时,我想我应该尝试通过applyDynamic访问bean属性。

我的第一个非常粗糙的伤口是

trait BeanProperties extends Dynamic {
  def applyDynamic(name: String)(args: Any*) = {
    if (args.length == 0)
      PropertyUtils.getProperty(this, name)
    else
      null
  }
}

因此

val bean = new JTextField("text") with BeanProperties
bean.getText should equal("text")
bean.text should equal("text")

到目前为止还不错!但当我尝试

bean.background should equal(bean.getBackground)

编译器抱怨道,试图访问名为background的字段,而不是合成一个方法。

variable background in class Component cannot be accessed in javax.swing.JTextField with BeanPropertiesTest.this.BeanProperties

这是故意的、疏忽还是计划修复的?

最佳回答

FWIW,我对此提出了修复方案https://github.com/scala/scala/pull/98

如果它被接受,那么当Dynamic从-Xexperiental中出来时,它确实会被修复。

问题回答

Martin Odersky关于Scala Lang邮件列表的回答

我认为这应该在Dynamic从-Xexperiental出来时解决。





相关问题
Dynamic table size html

I m making a website that has to fit in the entire screen regardless of screen-size. I m using a table to use this at the moment but I ran into a problem. The web page is divided into 3 columns: the ...

Dynamic creation of ASP.NET Form Elements

I m trying to build a form which generates itself as it is used. I have created a really simplistic example, loosely related to what I m trying to do below, but which demonstrates the problem. The ...

Dynamic Property of JavaScript object?

I am wondering if this is possible in JavaScript, I want to have an Object which could contain dynamic properties. Give an example: function MyObject() { } var myobj = new MyObject(); myobj....

Populating a DataGridView on-the-fly (VB.NET)

I have a DataGridView which reads data from a custom (CSLA) list object. The dataset might have 100,000 records, and obviously I don t want to show them all at once because, for one, it would take ...

Passing parameters dynamically to variadic functions

I was wondering if there was any way to pass parameters dynamically to variadic functions. i.e. If I have a function int some_function (int a, int b, ...){/*blah*/} and I am accepting a bunch of ...

How to dynamically generate variables in Action Script 2.0

I have a for loop in action script which I m trying to use to dynamically create variable. Example for( i = 0 ; i &lt 3 ; i++) { var MyVar+i = i; } after this for loop runs, i would like to ...

iphone - Get dynamically created UITextField by tag

I add a UITextField to a table cell dynamically in my app. I d like to implement a "backgroundClick" method to dismiss the keyboard if the user presses outside the textfield (and outside the keyboard) ...

LINQ to SQL Dynamic Sort question

How do I code the Select clause in my LINQ satament to select column aliases so I can sort on them basically I want to accomplish this SQL statement in LINQ: select type_id as id, ...

热门标签