java中string是什么意思_java中string什么意思
文章图片
Java是面向对象的编程语言,它其中包含有各种各样的名词,都有着不同的意思。
Java中的string是字符串的意思,当声明了一个字符串变量时,便可以在里面存储数据。
String类
想要了解一个类,最好的办法就是看这个类的实现源代码,来看一下String类的源码:public final class String
implements java.io.Serializable, Comparable, CharSequence
{
/** The value is used for character storage. */
private final char value[];
/** The offset is the first index of the storage that is used. */
private final int offset;
/** The count is the number of characters in the String. */
private final int count;
/** Cache the hash code for the string */
private int hash;
// Default to 0
/** use serialVersionUID from JDK 1.0.2 for interoperability */
private static final long serialVersionUID = -6849794470754667710L;
........
【java中string是什么意思_java中string什么意思】}
从上面可以看出几点:
1)String类是final类,也即意味着String类不能被继承,并且它的成员方法都默认为final方法。
在Java中,被final修饰的类是不允许被继承的,并且该类中的成员方法都默认为final方法。
2)上面列举出了String类中所有的成员属性,从上面可以看出String类其实是通过char数组来保存字符串的。
推荐阅读
- JavaScript|英雄联盟轮播图逻辑
- 我是如何成为一名优秀的Java程序员的(经验分享)
- 快速排序中的Hoare vs Lomuto分区方案详细介绍
- OpenCV中的直方图均衡介绍和代码示例
- Linux中的HISTCONTROL命令及示例
- 如何在JavaScript中实现HashMap(详细实现指南)
- 从新计算机中删除预装软件的 5 个工具
- 磁盘管理与文件系统
- 一起看看MySQL中的隐藏列
- Java如何实现HashMap(原理解析和代码实现)