String to StringBuffer Conversion

PHOTO EMBED

Sun Apr 30 2023 18:48:23 GMT+0000 (Coordinated Universal Time)

Saved by @Shankar #instanceblocks #inheritance #overloading

class Demo 
{
	public static void main(String[] args) 
	{
				StringBuffer str = new StringBuffer("Technology");
				System.out.println(str);
				
				String str1 = str.toString();
				System.out.println(str1);


				// StringBuffer to String convertion


				// o/p -  Technology
				//		  Technology
	}
}
content_copyCOPY

conversion of StringBuffer to String