Yes, we can call string class methods using string literals.
Example
package com.w3schools; public class Test { public static void main(String args[]){ System.out.println("w3schools".charAt(3)); System.out.println("w3schools".indexOf('i')); } } |
Output
p
5 |
Java interview questions on String Handling
- Why string objects are immutable in java?
- How many ways we can create the string object?
- Why java uses the concept of string literal?
- String vs StringBuffer vs StringBuilder in java
- How to create immutable class in java?
- What is the purpose of toString() method in java?
- Is string a keyword in java?
- Is string a primitive type or derived type?
- What is string constant pool in java?
- What are mutable and immutable objects in java?
- What is string intern in java?
- Can we call string class methods using string literals?