70 likes | 196 Vues
Dive into the vibrant world of South Korean music with a focus on two iconic genres: Trot and K-Pop. This exploration highlights notable artists such as Tae Jin Ah from the Trot genre and Girls' Generation from the K-Pop scene. Through engaging music and captivating performances, these artists continue to shape the cultural landscape in Korea. Learn about their unique styles, the evolution of their music, and how they resonate with fans both domestically and internationally.
E N D
class 가수{… class Trot extends 가수{… class K_Pop extends 가수{…
t Trott = new Trot(); t.name = “태진아” t.sing();
k K_Popk = new K_Pop(); k.name = “소녀시대” k.sing(); k.dance();
public static void main(String[] args){ ArrayList<가수> star = new ArrayList<가수>(); star.add( new Trot() ); star.get(0).name = “태진아”; star.add( new K_Pop() ); star.get(1).name = “소녀시대”;
public static void main(String[] args){ ArrayList<가수> star = new ArrayList<가수>(); star.get(1).sing(); star star.get(1).dance();
for( 가수 k : star ){ k.sing(); if( k instanceofK_Pop ){ ((K_Pop) k).dance(); } } downcasting