CoffeeScript-範囲
前の章では、CoffeeScriptの配列を見てきましたが、プログラミング中に、以下に示すように、一連の数値を配列に格納する必要があるいくつかのシナリオに直面します。
numbers =[1,2,3,4,5,6,7,8,9,10]
CoffeeScriptは、数値のシーケンスを含む配列を表現するためのより短い方法を提供します。 ranges。CoffeeScriptのこの機能は、Rubyから着想を得ています。
構文
範囲は、..または...で区切られた範囲の最初と最後の位置の2つの数値によって作成されます。2つのドット(1..4)を使用すると、範囲は包括的(1、2、3、4)になります。3つのドット(1 ... 4)で、範囲は終了(1、2、3)を除外します。
以下に、CoffeeScriptの範囲の構文を示します。中括弧の間の範囲で値を定義します[ ]配列と同じように。範囲では、数値のシーケンスを格納しながら、シーケンス全体の値を提供する代わりに、begin そして end 2つのドットで区切られた値(..)以下に示すように。
range =[Begin..End]
例
これがCoffeeScriptの範囲の例です。これを名前の付いたファイルに保存しますranges_example.coffee。
numbers =[0..9]
console.log "The contents of the range are: "+ numbers
を開きます command prompt 次に示すように、.coffeeファイルをコンパイルします。
c:\> coffee -c ranges_example.coffee
コンパイルすると、次のJavaScriptが表示されます。ここでは、範囲が完全なCoffeeScript配列に変換されていることを確認できます。
// Generated by CoffeeScript 1.10.0
(function() {
var numbers;
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log("The contents of the range are:: " + numbers);
}).call(this);
今、開きます command prompt もう一度、以下に示すようにCoffeeScriptファイルを実行します。
c:\> coffee ranges_example.coffee
実行すると、CoffeeScriptファイルは次の出力を生成します。
The contents of the range are:: 0,1,2,3,4,5,6,7,8,9
最終値を除く
範囲は、すべての数値を含む完全な配列にコンパイルされます。除外したい場合end 値、それから私達は分離する必要があります start そして end 3つのドットを使用した範囲の要素(...)以下に示すように。
range =[Begin...End]
例
上記の例を除外することで書き直すことができます end以下に示す値。次の内容を名前の付いたファイルに保存しますrange_excluding_end.coffee
numbers =[0...9]
console.log "The contents of the range are:: "+ numbers
を開きます command prompt 次に示すように、.coffeeファイルをコンパイルします。
c:\> coffee -c ranges_example.coffee
コンパイルすると、次のJavaScriptが表示されます。
// Generated by CoffeeScript 1.10.0
(function() {
var numbers;
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8];
console.log("The contents of the range are:: " + numbers);
}).call(this);
今、開きます command prompt もう一度、以下に示すようにCoffeeScriptファイルを実行します。
c:\> coffee ranges_example.coffee
実行すると、CoffeeScriptファイルは次の出力を生成します。ここでは、最終値が9 除外されます。
The contents of the range are:: 0,1,2,3,4,5,6,7,8
変数での範囲の使用
開始値と終了値を変数に割り当てることで範囲を定義することもできます。
例
次の例を考えてみましょう。ここでは、変数を使用して範囲を定義しました。このコードを名前の付いたファイルに保存しますrange_variables.coffee
start=0
end=9
numbers =[start..end]
console.log "The contents of the range are: "+ numbers
を開きます command prompt 次に示すように、.coffeeファイルをコンパイルします。
c:\> coffee -c range_variables.coffee
コンパイルすると、次のJavaScriptが表示されます。
// Generated by CoffeeScript 1.10.0
(function() {
var end, i, numbers, results, start;
start = 0;
end = 9;
numbers = (function() {
results = [];
for (var i = start; start <= end ? i <= end : i >= end; start <= end ? i++ : i--) {
results.push(i);
}
return results;
}).apply(this);
console.log("The contents of the range are:: " + numbers);
}).call(this);
今、開きます command prompt もう一度、以下に示すようにCoffeeScriptファイルを実行します。
c:\> coffee range_variables.coffee
実行すると、CoffeeScriptファイルは次の出力を生成します。ここでは、最終値が9 除外されます。
The contents of the range are:: 0,1,2,3,4,5,6,7,8,9
配列のある範囲
配列を範囲とともに使用することで、配列をスライスできます。配列(変数)の直後に範囲を指定すると、CoffeeScriptコンパイラはそれをに変換しますslice() JavaScriptのメソッド呼び出し。
0から9までの数値を持つ配列があるとすると、以下に示すように、その最初の4つの要素を取得できます。
num = [1, 2, 3, 4, 5, 6, 7, 8, 9]
data = num[0..5]
負の値は最後からの要素を表します。たとえば、-1は9を示します。負の数3の後に2つのドットを指定すると、配列の最後の3つの要素が抽出されます。
data = num[-3..]
配列の範囲内の2つのドットのみを次のように指定した場合 num[..]、次に完全な配列が抽出されます。以下に示すように、範囲を使用して配列セグメントを他の要素に置き換えることもできます。
num[2..6] = [13,14,15,16,17]
例
次の例は、配列での範囲の使用を示しています。このコードを名前の付いたファイルに保存しますrange_arrays.coffee
#slicing an array using ranges
num = [1, 2, 3, 4, 5, 6, 7, 8, 9]
data = num[0..5]
console.log "The first four elements of the array : "+data
#Using negative values
data = num[-3..]
console.log "The last 3 elements of the array : "+data
#Extracting the whole array
console.log "Total elements of the array : "+num[..]
#Replacing the elements of an array
num[2..6] = [13,14,15,16,17]
console.log "New array : "+num
を開きます command prompt 次に示すように、.coffeeファイルをコンパイルします。
c:\> coffee -c range_arrays.coffee
コンパイルすると、次のJavaScriptが表示されます。ここでは、すべての範囲がJavaScriptのslice()メソッド呼び出しに変換されていることがわかります。
// Generated by CoffeeScript 1.10.0
(function() {
var data, num, ref;
num = [1, 2, 3, 4, 5, 6, 7, 8, 9];
data = num.slice(0, 6);
console.log("The first four elements of the array : " + data);
data = num.slice(-3);
console.log("The last 3 elements of the array : " + data);
console.log("Total elements of the array : " + num.slice(0));
[].splice.apply(num, [2, 5].concat(ref = [13, 14, 15, 16, 17])), ref;
console.log("New array : " + num);
}).call(this);
今、開きます command prompt もう一度、以下に示すようにCoffeeScriptファイルを実行します。
c:\> coffee range_arrays.coffee
実行すると、CoffeeScriptファイルは次の出力を生成します。ここでは、最終値が9 除外されます。
The first four elements of the array : 1,2,3,4,5,6
The last 3 elements of the array : 7,8,9
Total elements of the array : 1,2,3,4,5,6,7,8,9
New array : 1,2,13,14,15,16,17,8,9
文字列のある範囲
文字列で範囲を使用することもできます。文字列の後に範囲を指定すると、CoffeeScriptはそれらをスライスし、文字の新しいサブセットを返します。
例
次の例は、文字列での範囲の使用を示しています。ここでは、文字列を作成し、範囲を使用してその文字列から部分文字列を抽出しました。このコードを名前の付いたファイルに保存しますranges_with_strings.coffee
my_string = "Welcome to tutorialspoint"
new_string = my_string[0..10]
console.log new_string
を開きます command prompt 次に示すように、.coffeeファイルをコンパイルします。
c:\> coffee -c ranges_with_strings.coffee
コンパイルすると、次のJavaScriptが表示されます。
// Generated by CoffeeScript 1.10.0
(function() {
var my_string, new_string;
my_string = "Welcome to tutorialspoint";
new_string = my_string.slice(0, 6);
console.log(new_string);
}).call(this);
今、開きます command prompt もう一度、以下に示すようにCoffeeScriptファイルを実行します。
c:\> coffee ranges_with_strings.coffee
実行すると、CoffeeScriptファイルは次の出力を生成します。ここでは、最終値が9 除外されます。
Welcome to
範囲にわたる理解
オブジェクトおよび配列として、内包表記を使用して範囲の要素を反復することもできます。
例
以下は、範囲全体で内包表記を使用する例です。ここでは、範囲を作成し、内包表記を使用してその中の要素を取得しました。このコードを名前のファイルに保存しますcomprehensions_over_ranges.coffee
numbers =[0..9]
console.log "The elements of the range are: "
console.log num for num in numbers
を開きます command prompt 次に示すように、.coffeeファイルをコンパイルします。
c:\> coffee -c comprehensions_over_ranges.coffee
コンパイルすると、次のJavaScriptが表示されます。
// Generated by CoffeeScript 1.10.0
(function() {
var i, len, num, numbers;
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log("The elements of the range are: ");
for (i = 0, len = numbers.length; i < len; i++) {
num = numbers[i];
console.log(num);
}
}).call(this);
今、開きます command prompt もう一度、以下に示すようにCoffeeScriptファイルを実行します。
c:\> coffee comprehensions_over_ranges.coffee
実行すると、CoffeeScriptファイルは次の出力を生成します。ここでは、最終値が9 除外されます。
The elements of the range are:
0
1
2
3
4
5
6
7
8
同様に、内包表記のbyキーワードを使用してこの増分を変更することもできます。
array = (num for num in [1..10] by 2)
console.log array