abstraction in java

Java
public class ReplaceAllExample{  
public static void main(String args[]){  
String s1="Google is a very good website";  
String replaceString=s1.replaceAll("a","e");//replaces all occurrences of "a" to "e"  
System.out.println(replaceString);  
}}  Math.pow(base, esponente)Abstraction is nothing but the quality of dealing with ideas rather than 
events. It basically deals with hiding the internal details and showing 
the essential things to the user.public <t>

Source

Also in Java: