answersLogoWhite

0

Germany like every other country has fought wars by many different methods as the weapons and tactics and strategic aims of the wars changed over time. It would help if your question was more specific.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What was Hitler's main method for achieving lebensraum?

conquer other countries


What are germanys main industries?

guys proabaly beer making and also steel and other metal industry's


What are the recruitment methods for World War 1?

The main recruitment method was propaganda posters


Why you use main method when you can use static method?

The main method is called by the jvm when your program is executed. The main method is a static method: public static void main(String[] args) {} A static method is method that can be run without instantiate the class (creating an object from it) The main method is a static method. No other static method could replace it's functionality. PS By static method do you mean static initialiser? I often use static initialisers instead of a main method, but in these cases you must still have a main method, albeit an empty one ie. public static void main(String[] args) {} Notice that the method has an empty body A main method must be used if you intend to accept parameters at run time from the jvm.


What is void main?

The main method is the first method, which the Java Virtual Machine executes. When you execute a class with the Java interpreter, the runtime system starts by calling the class's main() method. Themain() method then calls all the other methods required to run your application. It can be said that the main method is the entry point in the Java program and java program can't run without this method.The signature of main() method looks like this:public static void main(String args[])The method signature for the main() method contains three modifiers:public indicates that the main() method can be called by any object.static indicates that the main() method is a class method.void indicates that the main() method has no return value.


What is the main purpose of the scientific method?

The main purpose of the scientific method is to test ideas


What is the sample code of java?

public class Hello {//opens the class public static void main(String args[]) //main method { System.out.println("Hello World"); //prints to the screen }//closes the main method }//closes the class After the above code is compiled and ran, it should display the words "Hello World" on the screen.


Can you overwrite main function in java?

You can not overwrite a static method in Java,and 'main' is a static method.so,you can't overwrite the 'main'.


What are two main causes of World war 2?

Germany's Invasion of Poland and Japan's attack at Pearl Harbor.


Why did AL Qaeda attack Paris?

To leave a message to the whole world that the US was not immune to attacks on their main lands.


The main method of a program has?

The Java main method of a program is the place where the program execution begins. A main method would look like below public static void main(String[] args){ }


If application can be run without main what need of main method?

Well, if an application could be run without a main method, then you would not need it. However, Java applications cannot run if they do not contain a main method.