Nuva
外觀
此條目沒有列出任何參考或來源。 (2018年2月2日) |
Nuva語言是一種面向對象的動態腳本語言。Nuva對應漢語的「女媧」(中國上古時代的神話傳說人物)一詞。
設計目的
[編輯]設計目的是用於基於模板的代碼生成。除了用於代碼生成領域外,也能用於開發應用程式,如文本和數據處理、GUI應用程式等。
特點
[編輯] <.
if (a = b && c == d or e <> f)
?? foo()
function foo()
Result = 'foo'
end function
end if
.>
- 動態的,無類型約束:採用動態類型,使用時不需聲明類型,賦值計算時自動進行類型轉換,如下:
<.
var a = '1'
a ++
?? 'a' ~ a
// 结果为: a2
.>
- 支持面向對象的編程方法:支持繼承性和多態性。
- 支持自動垃圾回收:程式設計師不需顯式釋放其所創建的對象。
- 模板專用的語言元素
- 模板標記(「<.」、「.>」、「[.」、「.]」)可以混合配對使用,對于格式要求很嚴格的場合非常有用。
[.='Hello, Nuva!'.]
<.='Hello, Nuva!'.>
[.='Hello, Nuva!'.>
<.='Hello, Nuva!'.]
- 凡「[.」之前的所有空白字符原樣輸出,「.]」之後的所有空白字符(包括換行)也原樣輸出;
- 如果行首到「<.」之間均為空白字符,則該部分空白字符不輸出,否則原樣輸出;
- 如果「.>」到行尾之間均為空白字符,則該部分空白字符和換行不輸出,否則也原樣輸出。
- 特有的file和assign結構能夠非常方便的對輸出進行組合、分解,從而方便了模板的編寫。
Nuva虛擬機特點
[編輯]- 內置正則表達式引擎:能夠方便的進行文本處理。
<.
var text = System.File.Load('Regex_Test.nuva')
foreach(str = text.RegexMatchs('\w+', ''))
?? str
end foreach
.>
輸出如下的結果:
var
text
System
File
Load
Regex_Test
nuva
foreach
str
text
RegexMatches
w
str
end
foreach
- 內置O/R Mapping引擎:可以通過面向對象的方式直接存取數據庫架構和數據。
- 內置基於HTML/XML的界面引擎:能夠方便的編寫GUI應用程式,典型的例子就是Macrobject CodeAuto代碼生成器(頁面存檔備份,存於互聯網檔案館)。
代碼示例
[編輯]Hello, Nuva!
[編輯] <.. "Hello, Nuva!" Demo ..>
<.
//======================================
// Hello, Nuva! (1)
//======================================
?? 'Hello, Nuva!'
/*======================================
Hello, Nuva! (2)
======================================*/
function HelloNuva()
?? "Hello, Nuva!";
end function
HelloNuva();
/*======================================
Hello, Nuva! (3)
======================================*/
class Nuva()
function Hello()
?? 'Hello, Nuva!';
end function
end class
var n = Nuva();
n.Hello();
.>
foreach | O/R Mapping
[編輯] <.
function Foreach_Demo()
// Load Schema from a Xml file
var schema = System.Data.LoadSchema(
System.Path.ProjectPath ~ '..\Northwind\Northwind.xobject'
);
?? '--------------------'
?? 'Tables Order by Name'
?? '--------------------'
foreach(table = schema.Tables.OrderbyName)
?? table.Name
end foreach
?? '---------------------------------'
?? 'Tables Filter by Name.Length < 10'
?? '---------------------------------'
foreach(table = schema.Tables | table.Name.Length < 10)
?? table.Name
end foreach
end function
.>
file | 生成文件
[編輯] <.
function File_Demo()
?? \r\n ~ '--Read file and Output here--'
file('codeexamples.nuvaproj') end file
// Read file and write to 'Target', overwrite it if exist
file('codeexamples.nuvaproj', true)
Target = 'temp.target'
end file
?? \r\n ~ '--Read file dynamically and Output here--'
file('')
FileName = System.Path.ProjectPath ~ 'output\temp.target'
end file
// Delete file
System.File.Delete(System.Path.ProjectPath ~ 'output\temp.target')
end function
.>
assign | 捕獲輸出
[編輯] <.
function Assign_Demo()
// 'Result' assigned from the output in the assign statement
assign(Result).]
Generate Text ... @[.=System.Now.] ...
<.end assign
end function
.>
函數 | 遞歸調用
[編輯] <.
/*--------------------------------------------------------
Factorial
--------------------------------------------------------*/
function Factorial ( N )
if (N <= 1)
Result = 1;
else
Result = N * Factorial(N - 1); // Recursion Call
end if;
end function;
.>
類 | 多態性
[編輯] <.
function Class_Demo()
class ClassA()
function Do()
this.DynDo()
end function
function DynDo()
?? 'ClassA'
end function
end class
class ClassB = ClassA()
function DynDo()
?? 'ClassB'
end function
end class
var c1 = ClassA()
var c2 = ClassB()
c1.Do()
c2.Do()
end function
.>
外部連結
[編輯]- Nuva語言官方主頁(頁面存檔備份,存於互聯網檔案館) - 可選(簡體中文)或(英文)