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

  • Home
  • SEARCH
  • 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 8678215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:39:31+00:00 2026-06-12T20:39:31+00:00

I have corrected something that was confusing me in V2 but am still a

  • 0

I have corrected something that was confusing me in V2 but am still a little curious as to what V1 is doing. Looking at V1 now am I right in thinking that line is being passed by value (so essentially what I have is a local copy of line). Scanner then scans its data into the address of that local copy, the local copy is destroyed when the method exits and the external variable line is still nil?

On V2, I am passing the address of line and then scanning data into that address, is this using passing by reference, just not sure of the terminology?

// V1
NSString *line = nil;
[self scanUsing:scanner into:line];
NSLog(@"AFTER_: %@", line);

- (void)scanUsing:(NSScanner *)scanner into:(NSString *)line {
    [scanner scanUpToString:@"\n" intoString:&line];
    NSLog(@"INSIDE: %@", line);
}

.

// V2     
NSString *line = nil;
[self scanUsing:scanner into:&line];
NSLog(@"AFTER_: %@", line);

- (void)scanUsing:(NSScanner *)scanner into:(NSString **)line {
    [scanner scanUpToString:@"\n" intoString:line];
    NSLog(@"INSIDE: %@", *line);
}
  • 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-12T20:39:33+00:00Added an answer on June 12, 2026 at 8:39 pm

    V1

    You are passing a copy of the pointer. It points to the same memory region, so what you see is the same value. You are passing the object then, by value. You can change the content, but not create a new object, since that pointer wont exist when the method finishes.

    V2

    Definition of reference is different (its a C++ type) But yeah, lets say that it behaves more or less the same. In V2 a new object can be allocated inside the method, and therefore, you can change the memory region that is being pointed by it.

    So:

    • V1, passing by value. You pass the pointer, and can change the content of the object pointed by the pointer.
    • V2, passing by reference. You pass a pointer to a pointer, and therefore you can alloc memory, and so change the pointer address as well.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know I've already asked questions on this, but something that's just confusing. I'm
Ok the title maybe a little confusing. I have a database with the table
I think I'm doing this inefficiently right now and wanted a suggestion of how
I am not sure if I am doing this right. I have a list
Im trying to write something to get my images to show correctly. I have
I have connected with the database successfully by using wizard in server explorer. but
I used BeautifulSoup to handle XML files that I have collected through a REST
I'm curious if allocating a buffer on the stack is required to have correct
I have a confusing problem in my code, in which one object gets initialized
I...really don't know how to word the title better. But basically, what I have

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.