- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
(注意,左值实际上是 C 语法中的一个术语,我不知道它在 Scala 中叫什么!)
正在尝试学习 Scala...今晚我正在为一种动态范围语言的内部 DSL 工作,该语言可能类似于 PHP 语法。
我的 REPL 是:欢迎使用 Scala 版本 2.7.6.final(Java HotSpot(TM) Client VM,Java 1.6.0)。
我有一些虚构的示例代码:
类 $(任何:任何){
def update(sym: Symbol, any: Any) { println("第 2 行执行");}
def ->(sym: Symbol) : $ = { println("第 1 行执行");返回这个}
def update(any: Any) { println("第 3 行执行");}
}
以下按预期工作:
Scala> var a = new $(0)
a: $ = $@19238ad
Scala> a('x) = "等等"
第 2 行执行
另一方面,为什么以下不调用 1 参数更新方法?
标量> a = 1
:6: 错误:类型不匹配;
发现:整数(1)
要求:$
一 = 1
^
在进行一些试验和错误时,我发现了这种语法上的好奇:
Scala> class A { def this_= { print("hello") } }
定义类 A
Scala> var a = new A
a: A = A@9aca82
标量> a = 2
:6: 错误:类型不匹配;
发现:整数(2)
要求:A
一 = 2
^
Scala> a.this_
:7: 错误:值 this_ 不是 A 的成员
在他的_
^
覆盖上面的“this_”是什么意思?它去哪里?
最终,我希望这个工作:
a->'x = "等等"
谢谢
最佳答案
def this_= { print("hello") }
this_
等于
{ print("hello") }
.相反,这是方法
this_=
,它使用过程样式声明(即,没有等号)。
scala> class A {
| private var _x = ""
| def x = _x
| def x_=(s: String) = _x = s.toUpperCase
| }
defined class A
scala> new A
res0: A = A@1169fb2
scala> res0.x
res1: java.lang.String =
scala> res0.x = "abc"
scala> res0.x
res2: java.lang.String = ABC
id_=
),但它只是一个标识符。任何标识符都混合了字母数字字符和其他符号,由下划线字符分隔。
id(key) = value // with update
id.key = value // with key_=, as long as key also exists and is public
id += value // or any other method containing "=" as part of its name
scala> class A {
| private var _x = ""
| def :=(s: String) = _x = s.toUpperCase
| override def toString = "A("+_x+")"
| }
defined class A
scala> val x = new A
x: A = A()
scala> x := "abc"
scala> x
res4: A = A(ABC)
=
,本身是保留的。而且,顺便说一下,Scala 中没有按引用传递——您永远无法更改作为参数传递的变量的值。
关于scala - 你能在 Scala 中返回一个可赋值的左值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2641886/
我是 C++ 的新手,正在尝试编写如下接口(interface): template class Comparable { protected: Comparable(){};
什么是左值? 最佳答案 左值是可以分配给以下值的值: lvalue = rvalue; 它是“left value”或“lefthand value”的缩写,它基本上只是=符号左侧的值,即您为其分配值
这个问题已经有答案了: Why do C and C++ support memberwise assignment of arrays within structs, but not general
C++03 $14.1/6 - "A non-type non-reference template-parameter is not an lvalue." C++0x $14.2/6- "A no
这只是出于好奇我问... 我在任何地方看到的 99% 的代码,当使用“IF”时,将采用“If (RValue == LValue) ...”格式。例子: If (variableABC == "Hel
在 C++03 中,表达式可以是右值,也可以是左值。 在 C++11 中,表达式可以是: 右值 左值 x值 gl值 右值 两个类别变成了五个类别。 这些新的表达类别是什么? 这些新类别与现有的右值和左
我正在尝试将 div 向左移动指定数量的像素,我正在使用从此处获得的 slider : http://carpe.ambiprospect.com/slider/archive/v1.3/ 所以从示例
所以我有一个函数需要将 std::vector 作为参数。我想知道声明参数的最佳方式,这样底层数组就不会被深度复制,因为它可能相当大。 // which should I choose? void m
在 C++03 中,表达式要么是右值,要么是左值。 在 C++11 中,表达式可以是: 右值 左值 xvalue glvalue 右值 两类变成了五类。 这些新的表达类别是什么? 这些新类别与现有的右
我正在尝试实现类似 find 的方法来从容器中提取对值的引用,如果找不到该值或该值的类型不兼容,则返回一个默认值。 template const T& get (key_type k, const T
我有以下代码: #include using namespace std; void test(int& a) { cout << "lvalue." << endl; } void tes
我的搜索发现许多关于右值绑定(bind)到左值的帖子,但没有任何类似的帖子。对不起,如果它是重复的。 struct StrHolder { StrHolder(std::string&& s)
这是一个后续问题 C++0x rvalue references and temporaries 在上一个问题中,我问过这段代码应该如何工作: void f(const std::string &);
为什么这不起作用: ostream& operator' lvalue to 'std::basic_ostream&&'| error: initializing argument 1 of '
偶尔,我被问到一个技巧问题:x++ 和 ++x 哪个不能在 c 中留值?很多人告诉我++x不能,因为++x的汇编代码不返回寄存器。我对此表示怀疑。所以我做了一些实验。 C 代码: #include
所以这个问题与我为实际问题选择的解决方案有关,为了尽可能提供完整的图片,这个问题是这样的:基本上我有一个带有很多模板参数的函数,我正在尝试暴露给 Python。与用宏做一些噩梦般的事情来消除我需要的所
指针很简单。有一些内存保存着一个地址。要获得(有意义的)值,取消引用返回地址指向的内存中包含的值。 引用以某种方式做一些类似的事情:它们持有指向一个临时对象的“链接”。但是当我分配或使用引用时会发生什
下面是一些示例代码: #include class Foo { public: explicit Foo(int x) : data(x) {}; Foo& operator++() {
背景 以下代码块出现在 Scott Meyers 的名著 "Effective C++" 中第 3 项: class TextBlock { public: ... const cha
我是一名优秀的程序员,十分优秀!