Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,请问可以将以下代码行解释为英文吗?
"foo".TrimEnd(New Char(0 - 1) {})
我知道 TrimEnd 会做什么,但不知道 Char 位。
您发布的代码在发布的上下文中毫无意义,那么这是从您找到的一些代码或虚构的示例中操纵的吗?
要回答您的问题:
TrimEnd
New Char(x)
x
0-1
-1
0
{}
我认为这是一个 NOOP,因为TrimEnd()传递了一个空数组。此代码将检查“o”(“foo”的最后一个字符)是否在空数组中,但它不在,并返回“foo”。
TrimEnd()
我对 gem nested_form 有一点问题。我有:
class Factura < ActiveRecord::Base attr_accessible :itemfacturas_attributes has_many :itemfactura