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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:53:37+00:00 2026-05-17T22:53:37+00:00

I am having a small problem I am trying to print the contents of

  • 0

I am having a small problem I am trying to print the contents of a couple of variables which are located in a a private method. but I simply keep getting ‘Can Not Find Symbol’

Below is the code that I am trying to read the data from (including the println) also I am very new to java.

private void createBooking()
{
     String title;
     String firstName;
     String lastName;
     String bookingNo;
     String roomType;

    System.out.print("Enter title: ");
    title = keyboard.next();
    System.out.print("Enter first name: ");
    firstName = keyboard.next();
    System.out.print("Enter last name: ");
    lastName = keyboard.next();
    System.out.print("Enter booking number: ");
    bookingNo = keyboard.next();
    System.out.print("Enter room type: ");
    roomType = keyboard.next();


    aBooking = new Booking (title, firstName, lastName, bookingNo, roomType);

}

public void printCustomerName()
{
    System.out.println (createBooking.title);
}
  • 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-17T22:53:38+00:00Added an answer on May 17, 2026 at 10:53 pm

    You probably want to put these variables as member variables, and then simply access it without using the .-operator.

    class BookingClass {
    
        // You also seem to need the following:
        Booking aBooking;
    
        String title;
        String firstName;
        String lastName;
        String bookingNo;
        String roomType;
    
        private void createBooking() {
    
            System.out.print("Enter title: ");
            title = keyboard.next();
            System.out.print("Enter first name: ");
            firstName = keyboard.next();
            System.out.print("Enter last name: ");
            lastName = keyboard.next();
            System.out.print("Enter booking number: ");
            bookingNo = keyboard.next();
            System.out.print("Enter room type: ");
            roomType = keyboard.next();
    
            aBooking = new Booking(title, firstName, lastName, bookingNo, roomType);
        }
    
        public void printCustomerName() {
            System.out.println(title);
            // ...should perhaps be
            // System.out.println(firstName + " " + lastName);
        }
    }
    

    Since you do create a Booking instance however, you may want to get rid of title, firstName, lastName, bookingNo and roomType and put them in the Booking class instead. And then access them through aBooking.getTitle() and so on…

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

Sidebar

Related Questions

I'm having a small but annoying problem with trying to open a link in
Im having a small problem with my code. I have been trying to read
having a small problem. I'm trying to create a loop that will create an
I'm having a small problem with AFNetworking. Im trying to have a simple call
I have been having a small problem that I can't by-pass it, I keep
I'm having a small problem trying to malloc this struct. Here is the code
I am having small problem. I am trying to replace words in sentence i.e.
Bit of a newb but just having a small problem using jquery cycle all
I am having a small problem in my code. I am trying to reverse
Problem I am trying to build a small ruby script - which will be

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.