I'm very new to developing on Android and the Java language in general and I can't seem to find an explanation on why the following statement has "(TabHost)" after the "=":
TabHost tabHost=(TabHost)findViewById(R.id.tabHost);
as opposed to:
TabHost tabHost = getTabHost();
They do the same thing, right? Why use either of them? Also, please explain the syntax of the first code specifically, please.
Thank you.