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 6362503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:54:59+00:00 2026-05-24T23:54:59+00:00

Which is faster and takes less amount of time (in nanoseconds) in JAVA between

  • 0

Which is faster and takes less amount of time (in nanoseconds) in JAVA between the two?

get() or elementAt()

I’m using them to return element stored in an object. And speed is critical, therefore I wanted to know which is more feasible and faster amongst the two.

public E peek() {
        int len = size();
        if (len == 0)
            throw new EmptyStackException();
        return get(len - 1);
}

or

public E peek() {
            int len = size();
            if (len == 0)
                throw new EmptyStackException();
            return elementAt(len - 1);
}
  • 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-05-24T23:55:00+00:00Added an answer on May 24, 2026 at 11:55 pm

    First off, you didn’t tell us what data structure you are working with. So, I’ll go with the assumption that you are using Vector or some Vector derivative.

    The two methods are identical according to the documentation:

    http://download.oracle.com/javase/1,5.0/docs/api/java/util/Vector.html

    That being said however, elementAt(idx), dates back to the days when Vector did not follow the List patterns (by extending AbstractList) — if you read the full docs you’ll see that Vector was modified to implement the List interfaces.

    Therefore, I would expect get(idx) to provide the fastest speeds, and elementAt(idx) to simply call through to get(idx). At any rate, the difference in speed is going to be almost nothing — and you should look elsewhere if you’re looking to get a performance bump.

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

Sidebar

Related Questions

I've been wondering this for some time. As the title say, which is faster,
We call a webservice from our C# app which takes about 300ms using WCF
So, I've always wondered, when it comes to compression, if it takes less time
I have the following application which get launched as below: Runtime.getRuntime().exec(java -cp /var/dist/Test.jar System.V
Which is faster? someCondition has the same probability of being true as it has
Which is faster: Union or Concat ? I don't care about the order of
Just wondering which is faster: DELETE FROM table_name WHERE X='1' DELETE FROM table_name WHERE
Possible Duplicate: Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc What
Possible Duplicate: Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc. I
which would you recommend? which is faster, reliable? apache mod_python or nginx/lighttpd FastCGI?

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.