用于获取字符串的字节长度,通常情况下仅仅在包含特殊语言,例如获取象形字的实际长度,比如一个中文字符用string的length方法得到的结果会是1,而用byteLen()获取到的将会是3
"例子".length; "例子".byteLen(); "hello".length; "hello".byteLen();
2 6 5 5