English 中文(简体)
何种语言可使用物体字面?
原标题:What languages provide the use of object literals?

何种语言可使用物体字面? (用什么语言可以轻松读吗?) 您能否举出一个法典的例子?

从明显的javascript snippet开始:

var someObj = {
    someProperty: 123,
    someFunction: function() {
        alert( hello! );
    }
};
最佳回答

如果你以“定期”取代物体,那么Prolog自然会这样做(事实上,没有其他办法制造物体)。 这里的一个例子是双ary树:

% find a node in List with a nil left child and call its rightmost grandchild X
member(node(nil,node(_,X)), List).

Li, and ́s have some pretty期 in this area, especiallyquoting and >ing:

;; construct right-leaning binary tree with x as the rightmost grandchild
`(nil . (nil . ,x))

实际上,所有功能性方案拟订语言都以某种形式加以复制。

问题回答

C# 匿名

var Customer = new
{
    Company = "AgileApps",
    Website = "http://www.agileapps.co.uk",
    Name = "Big Al",
    Entered = DateTime.Now
};




相关问题
jquery using object literal over multiple files

I ve seen object literal examples and they look really nice and sensible. What I want to know is if it s possible to use object literal over multiple files, because all the examples I ve seen had only ...

Are object literals Pythonic?

JavaScript has object literals, e.g. var p = { name: "John Smith", age: 23 } and .NET has anonymous types, e.g. var p = new { Name = "John Smith", Age = 23}; // C# Something similar can be ...

Javascript object literal: why can t I do this?

I have the following (simplified) object literal. The icons method uses closure to hide the icons variable, which I d like to have as an associative array for later lookups. var MapListings = { ...

Dynamic object literal in javascript?

Is it possible to creat an object literal on the fly? Like this: var arr = [ one , two , three ]; var literal = {}; for(var i=0;i<arr.length;i++) { // some literal push method here! ...

热门标签