我试图打印出阵列,但它不起作用。
目前使用sublime text 2和node build,不确定在编写代码之前是否必须声明一些内容。
以下是代码:
String card[] = new card[2]
card[0] = "Ace";
card[1] = "two";
card[3] = "three";
for(int i=0; i< card.length; i++)
{
system.out.print(""+card[i]);
}
调试器给了我以下结果:
(function (exports, require, module, __filename, __dirname) { String card[] = new card[2]
SyntaxError: Unexpected identifier
at Object.exports.runInThisContext (vm.js:76:16)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:394:7)
at startup (bootstrap_node.js:149:9)
at bootstrap_node.js:509:3
[Finished in 0.1s with exit code 1]
答案 0 :(得分:0)
看起来你正在将javascript与java或其他语言混合在一起。
Javascript在声明中不使用显式类型,因此要声明一个新数组,你要编写var array = [];
打印到输出也比javascript更多Java。而不是system.out.print
您将使用console.log
写入标准输出。您可以使用console.error
对于js,你的例子看起来像这样:
var card = []; // declare the variable card as an array
card[0] = "Ace";
card[1] = "two";
card[3] = "three";
for(var i=0; i< card.length; i++)
{
console.log(card[i]);
}