
|
Go to the first, previous, next, last section, table of contents.
- newbytearray(len,[listorstring])
-
:: Ťµ len ¤Î byte array ¤òÀ¸À®¤¹¤ë.
- return
-
byte array
- len
-
¼«Á³¿ô
- listorstring
-
¥ê¥¹¥È¤Þ¤¿¤Ïʸ»úÎó
-
newvect ¤ÈƱÍͤˤ·¤Æ byte array ¤òÀ¸À®¤¹¤ë.
similar to that of newvect .
-
ʸ»úÎó¤Ç½é´üÃͤò»ØÄꤹ¤ë¤³¤È¤â²Äǽ¤Ç¤¢¤ë.
-
byte array ¤ÎÍ×ÁǤΥ¢¥¯¥»¥¹¤ÏÇÛÎó¤ÈƱÍͤǤ¢¤ë.
[182] A=newbytearray(3);
|00 00 00|
[183] A=newbytearray(3,[1,2,3]);
|01 02 03|
[184] A=newbytearray(3,"abc");
|61 62 63|
[185] A[0];
97
[186] A[1]=123;
123
[187] A;
|61 7b 63|
- »²¾È
-
section
newvect .
Go to the first, previous, next, last section, table of contents.
|