翻訳と辞書
Words near each other
・ MVB Records
・ MVC
・ MVC4WPF
・ MVCA
・ MVCC
・ MVCML
・ MVD (disambiguation)
・ MVD Ensemble
・ MVD special camp
・ MVDDS
・ MVDDS dispute
・ MVDS
・ MVE
・ MVEDR
・ MVEE
MVEL
・ Mvelaphanda Group
・ Mven River
・ Mvengue
・ Mvet
・ Mvezo
・ MVF
・ MVFC
・ MVFC Berettyóújfalu
・ MVFS
・ MVG
・ MVGR College of Engineering
・ MVGroup
・ MVHS
・ MVI


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

MVEL : ウィキペディア英語版
MVEL

MVFLEX Expression Language (MVEL) is a hybrid dynamic/statically typed, embeddable Expression Language and runtime for the Java Platform. Originally started as a utility language for an application framework, the project is now developed completely independently.
MVEL is typically used for exposing basic logic to end-users and programmers through configuration such as XML files or annotations. It may also be used to parse simple JavaBean expressions.
The runtime allows MVEL expressions to be executed either interpretively, or through a pre-compilation process with support for runtime bytecode generation to remove overhead.
Since MVEL is meant to augment Java-based software, it borrows most of its syntax directly from the Java programming language with some minor differences and additional capabilities. For example: as a side effect of MVEL's typing model, which treats class and method references as regular variables, it is possible to use both class and function pointers (but only for static methods).

millis = System.currentTimeMillis;
// get millis
time = millis();

MVEL also allows collections to be represented as folds (or projections) in a Lisp-like syntax.

namesOfParents = (parent.name in (children in employees));

==Hello world example==

System.out.println("Hello, world!");

MVEL relies on Java namespaces and classes, but does not possess the ability to declare namespaces or classes.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「MVEL」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.