將js中四種基本型別轉換為字串型別,常用的三種方式
1.tostring() 2.string(常量or變數) 3.常量or變數 + '';或常量or變數 + "";
1.對於number型別和boolean型別可以通過變數名稱.tostring()的方式來轉換
/* 數值型別轉換為字串型別
let value = 123; //定義乙個變數value並初始化數值123
console.log(value); //輸出變數value的取值123
console.log(typeof value); //輸出變數value的型別
let str = value.tostring() //將變數value的資料拷貝轉換為string字串型別儲存到變數str中
console.log(str); //輸出變數str的取值123
console.log(typeof str); //輸出變數str的型別變成了字串型別
*//*布林型別轉換為字串型別
let value = true; //定義乙個變數value並初始化為true
console.log(value); //輸出變數value的儲存資料
console.log(typeof value); //輸出變數value的型別布林型別
let str = value.tostring() //將變數value的資料拷貝轉換為字串型別儲存到變數str中
console.log(str); //輸出變數str的資料
console.log(typeof str); //輸出變數str的資料型別變成了字串型別
*/// 2.對於 未定義(undefined)型別和對空(null)型別可以通過string(常量or變數)
//未定義undefined型別轉換為字串型別
// let value = undefined;
// console.log(value);
// console.log(typeof value);
// let str = string(value);
// console.log(str);
// console.log(typeof str);
//對空null型別轉換為字串型別
// let value = null;
// console.log(null);
// console.log(typeof null);
// let str = string(null);
// console.log(str);
// console.log(typeof str);
//數值型別轉換為字串型別
// let value = 123;
// console.log(value);
// console.log(typeof value);
// let str = string(value);
// console.log(str);
// console.log(typeof str);
//布林型別轉換為字串型別
// let value = true;
// console.log(value);
// console.log(typeof value);
// let str = string(true)
// console.log(str);
// console.log(typeof str);
//3.常量or變數 + '';或常量or變數 + "";
// let value = 123;
// let str = value + '';
// console.log(str);
// console.log(typeof str);
// let str = 123 + ''; + ''或者 ""底層的本質其實就是呼叫string()函式
// console.log(str);
// console.log(typeof str);
字串型別轉換總結
這裡總結了bstr,bstr t,ccombstr,cstring四種字串型別之間的轉換。其中bstr為基本資料型別,另三個為字串類。首先宣告四個型別的變數 bstr strbigbstr sysallocstring t bstr bstr t strsmallbstr t bstr t ccom...
字串型別轉換總結
這裡總結了bstr,bstr t,ccombstr,cstring四種字串型別之間的轉換。其中bstr為基本資料型別,另三個為字串類。首先宣告四個型別的變數 bstr strbigbstr sysallocstring t bstr bstr t strsmallbstr t bstr t ccom...
Python 字串型別轉換
概述python 型別轉換 背景使用 python 時,遇到了需要 型別轉換的場景 環境os win10 python 3.8概述 python 型別轉換 場景數字轉換 int 轉 double 字元轉換 比如我某個 web 伺服器,收進來的引數,全都是 str 型別的 例子 這裡只列出了 一部分 ...