Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7796585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:24:59+00:00 2026-06-01T23:24:59+00:00

I was under the impression that the main method had to have the form

  • 0

I was under the impression that the main method had to have the form “public static void main (String[] args){}”, that you couldn’t pass int[] arguments.

However, in windows commandline, when running the following .class file, it accepted both int and string as arguments.

For example, using this command will give the output “stringers”: “java IntArgsTest stringers”

My question is, why? Why would this code accept a string as an argument without an error?

Here is my code.

public class IntArgsTest 
{
    public static void main (int[] args)
    {

        IntArgsTest iat = new IntArgsTest(args);

    }

    public IntArgsTest(int[] n){ System.out.println(n[0]);};

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:25:01+00:00Added an answer on June 1, 2026 at 11:25 pm

    Everything passed into main method, the one used by the JVM to start a program, is a String, everything. It may look like the int 1, but it’s really the String “1”, and that’s a big difference.

    Now with your code, what happens if you try to run it? Sure it will compile just fine since it is valid Java, but your main method signature doesn’t match the one required by the JVM as the starting point of a program.

    For your code to run, you’d need to add a valid main method like,

    public class IntArgsTest {
       public static void main(int[] args) {
    
          IntArgsTest iat = new IntArgsTest(args);
    
       }
    
       public IntArgsTest(int[] n) {
          System.out.println(n[0]);
       };
    
       public static void main(String[] args) {
          int[] intArgs = new int[args.length];
    
          for (int i : intArgs) {
             try {
                intArgs[i] = Integer.parseInt(args[i]);
             } catch (NumberFormatException e) {
                System.err.println("Failed trying to parse a non-numeric argument, " + args[i]);
             }
          }
          main(intArgs);
       }
    }
    

    And then pass some numbers in when the program is called.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was under the impression that using the Resolve method returned a new instance
From previous experience I had been under the impression that it's perfectly legal (though
I had until recently been under the impression that the CDbl(x) operation in VB.NET
I was under the impression that I could put any old executable program in
I was under the impression that when you double click a file (or choose
I was under the impression that if I deployed my application (using Ant) then
I was under the impression that this was formed correctly, but here it is
I was under the impression that jQuery is JavaScript Framework, but when am searching
I was under the impression that this code #include <windows.h> #include <stdio.h> int WINAPI
I've always been under the impression that using the ThreadPool for (let's say non-critical)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.