📜  将 char 值设置为 null java 代码示例

📅  最后修改于: 2022-03-11 14:52:02.445000             🧑  作者: Mango

代码示例1
//Primitives data types aren't nullable. However, you can use the following
  
 c[i]= '\0'; 
OR
 c[i] = 0;