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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:37:25+00:00 2026-05-28T17:37:25+00:00

What I am trying to do is convert this C++ function to Java: void

  • 0

What I am trying to do is convert this C++ function to Java:

void print(int x[], int l)
{
     if (l != 0) {
         cout << x[0] << ",";
     print(x+1,l-1);
     }
}

This is what I am trying to do, but it won’t work:

void print(int x[])
{
     if (x.length != 0) {
         cout << x[0] << ",";
         print(x + 1); //<--- ERROR!
     }
}

Does anybody have any ideas?

  • 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-28T17:37:26+00:00Added an answer on May 28, 2026 at 5:37 pm

    Java does not have pointers in the same way as C++. That is, you can’t “move” the array pointer x further along the array. What I would suggest is passing a starting index to your function something like this:

    void print(int x[], int start)
    {
        if (start < x.length) {
            if (start > 0) {
                System.out.println(x[start] + ",");
            }
            print(x, start + 1);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to convert a Java function into equivalent Groovy code, but I
Trying to convert this c code into MIPS and run it in SPIM. int
This is a but of a part 2 in trying to convert an SVN
I'm trying to convert this Javascript code: self.userSerialEvent = function (join, value, tokens) {
I'm trying to convert a string into money format using this function , and
i'm trying to convert this function: function txt(str){ var t=''; var s=unescape(str); var x=Math.round(Math.sqrt(16));
I never worked with pgsql before and im trying to convert this function to
I'm trying to convert this var j = jQuery.noConflict(); j('.products-grid li.item').hover(function(){ j(.products-grid li.item).not(this).stop(true,true).fadeTo(300, .8);
I'm trying to convert a sectionned table into a flat list using this function
Im trying to convert this php function to javascript: function sanitize_words($string,$limit=false) { preg_match_all(/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]{1,}/u,$string,$matches,PREG_PATTERN_ORDER); return

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.