+ 3
Learn to learn
I am always watching for new ways/methodics to shuffle knowledge into brain. Any suggestions?
2 ответов
+ 4
one thing I did, which only applied to my second language..
First I learned Python (still learning Python) .. After a while I started learning Java. To practice java methods and syntax, I turned Java methods into Python built in functions. Example:
Python:
input("What is your name?")
My Java Method:
public static String input(String a){
Scanner scan = new Scanner(System.in);
System.out.println(a);
String in=scan.nextLine();
return in;
}
Now Java vs python-
Python: input("What is your name?")
Java: input("What is your name?")
ultimately probably not what you want to be doing with your methods from a performance point of view, but It helped me learn java syntax pretty fast.
+ 4
nice @justin