V8 JavaScript Engine 入門指南 2 — Hello World

來源:互聯網
上載者:User
第一個V8程式

一個官方的hello world,http://code.google.com/apis/v8/get_started.html

#include using namespace v8;int main(int argc, char* argv[]) {    // Create a stack-allocated handle scope.    HandleScope handle_scope;    // Create a new context.    Persistent<Context> context = Context::New();    // Enter the created context for compiling and    // running the hello world script.     Context::Scope context_scope(context);    // Create a string containing the JavaScript source code.    Handle<String> source = String::New("'Hello' + ', World!'");    // Compile the source code.    Handle<Script> script = Script::Compile(source);    // Run the script to get the result.    Handle<Value> result = script->Run();    // Dispose the persistent context.    context.Dispose();    // Convert the result to an ASCII string and print it.    String::AsciiValue ascii(result);    printf("%s/n", *ascii);    return 0;}

將如上代碼拷貝到你用的版本的vs裡,設定好include目錄,以及引入lib檔案,並且將之前你產生的dll放入相應debug或者release目錄下,就可以正確編譯並執行了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.