Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 8 of 8

Thread: free tutoring for beginners

  1. #1
    Member
    Join Date
    Oct 2012
    Posts
    133
    Thanks
    16
    Thanked 0 Times in 0 Posts

    Default free tutoring for beginners

    Hi, i am trying to get better at communication skills. So i am willing to tutor any one who is new to java, algorithm, or GUI. And in return I don't expect anything.


  2. #2
    Member clarky2006's Avatar
    Join Date
    Nov 2012
    Posts
    84
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default Re: free tutoring for beginners

    Hi mate..I could do with help to design a library project..your help would be appreciated..thanks

    --- Update ---

    ps..Im very new to JAVA

  3. #3
    Super Moderator curmudgeon's Avatar
    Join Date
    Aug 2012
    Posts
    1,130
    My Mood
    Cynical
    Thanks
    64
    Thanked 140 Times in 135 Posts

    Default Re: free tutoring for beginners

    Just remember, you get what you paid for.

  4. #4
    Member clarky2006's Avatar
    Join Date
    Nov 2012
    Posts
    84
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default Re: free tutoring for beginners

    so do u reckon its possible? i ve done the basics like designing the book class, library class, loan class and the membership class. i ve also done some mutators and accessors. let me know and how much...cheers..

  5. #5
    Super Moderator jps's Avatar
    Join Date
    Jul 2012
    Posts
    2,642
    My Mood
    Daring
    Thanks
    90
    Thanked 263 Times in 232 Posts

    Default Re: free tutoring for beginners

    how much...cheers..
    See:
    And in return I don't expect anything.

    so do u reckon its possible?
    Of course. Anything is possible, especially the impossible..


    i ve done the basics like designing the book class, library class, loan class and the membership class. i ve also done some mutators and accessors.
    Finish it yourself. Because:
    1) You will learn more
    2) You will know your project well and this will aid in troubleshooting
    3) You can maintain and modify the code more effectively
    4) If you have done so much already, why give the glory to someone else, that is the best part.

  6. The Following 2 Users Say Thank You to jps For This Useful Post:

    clarky2006 (November 7th, 2012), curmudgeon (November 7th, 2012)

  7. #6
    Member clarky2006's Avatar
    Join Date
    Nov 2012
    Posts
    84
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default Re: free tutoring for beginners

    Ye, i ve done a bit but it wont compile and i struggled with the arraylist

    --- Update ---

    its a Uni project done in BlueJ environment..thanx

    --- Update ---

    /**
    * Write a description of class Book here.
    *
    * @author (Michael Clark)
    * @version (30th October 2012, version 0.1)
    */
    public class Book
    {
    // instance variables - replace the example below with your own
    private int id;
    private String author;
    private String title;
    private boolean isFiction;


    /**
    * Constructor for objects of class Book
    */
    public Book(String title, String author, int id, boolean isFiction)
    {
    // initialise instance variables
    this.id = 0;
    this.author = author;
    this.title = title;
    this.isFiction = false;
    }

    /**
    * Get the name of the book Author.
    *
    */
    public String getAutor()
    {
    // put your code here
    return this.author;
    }

    /**
    * Get the book ID.
    */
    public int getId()
    {
    return this.id;
    }

    /**
    * Get the book title.
    *
    */
    public String getTitle()
    {
    return this.title;
    }

    public void setAuthor(String authorName)
    {
    author = authorName;
    }

    public void setId(int bookId)
    {
    id = bookId;
    }

    public void setTitle(String bookTitle)
    {
    title = bookTitle;
    }


    Here is the book class..wont compile

    --- Update ---

    import java.util.ArrayList;
    /**
    * This Class would hold Membership details for the Library.
    *
    * @author (Michael Clark)
    * @version (30th October 2012, version 0.1)
    */
    public class Member
    {
    // instance variables - These are member object attributes/fields
    private String firstName;
    private String lastName;
    private String phoneNumber;
    private int refNumber;

    /**
    * Constructor for objects of class Member
    */
    public Member(String firstName, String lastName, String phoneNumber, int refNumber)
    {
    this.firstName = firstName;
    this.lastName = lastName;
    this.phoneNumber = phoneNumber;
    this.refNumber = refNumber;

    }

    /**
    * An example of a method - replace this comment with your own
    *
    * @param y a sample parameter for a method
    * @return the sum of x and y
    */
    public String getfirstName()
    {
    return this.firstName;
    }

    public String getlastName()
    {
    return this.lastName;
    }

    public String getPhoneNumber()
    {
    return this.phoneNumber;
    }

    public int getrefNumber()
    {
    return this.refNumber;
    }

    The membership class

    --- Update ---

    import java.util.ArrayList;

    /**
    * This is a model of a Library class.
    *
    * @author (Michael Clark)
    * @version (30th October 2012, version 0.1)
    */
    public class Library
    {
    // instance variables - replace the example below with your own
    private ArrayList<Membership> member;
    private ArrayList<Book> books;

    /**
    * Constructor for objects of class Library
    */
    public Library(Membership member)
    {
    // initialise instance variables
    members = new ArrayList<Membership>();
    books = new ArrayList<Book>();
    }

    /**
    * An example of a method - replace this comment with your own
    *
    * @param y a sample parameter for a method
    * @return the sum of x and y
    */
    public int sampleMethod(int y)
    {


    }
    }
    }
    {

    The library class

    --- Update ---

    /**
    * Write a description of class Loan here.
    *
    * @author (Michael Clark)
    * @version (30th October 2012, version 0.1)
    */
    public class Loan
    {
    // instance variables - replace the example below with your own
    private int x;

    /**
    * Constructor for objects of class Loan
    */
    public Loan()
    {
    // initialise instance variables
    x = 0;
    }

    /**
    * An example of a method - replace this comment with your own
    *
    * @param y a sample parameter for a method
    * @return the sum of x and y
    */
    public int sampleMethod(int y)
    {
    // put your code here
    return x +



    this is just a template for the loan class

  8. #7
    Super Moderator curmudgeon's Avatar
    Join Date
    Aug 2012
    Posts
    1,130
    My Mood
    Cynical
    Thanks
    64
    Thanked 140 Times in 135 Posts

    Default Re: free tutoring for beginners

    clarky, your question is important, so give it its own separate thread/question rather than hijacking hwoarang69's thread. Also, when you do re-ask your question in its own thread, please 1) put [code=java] [/code] tags around your code so that it retains its formatting and is readable, and please 2) show the compilation errors, and indicate by comment in the code which line is causing the compilation errors. Best of luck!

  9. The Following User Says Thank You to curmudgeon For This Useful Post:

    Admin (November 8th, 2012)

  10. #8
    Member clarky2006's Avatar
    Join Date
    Nov 2012
    Posts
    84
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default Re: free tutoring for beginners

    cheers mate, i know wot u mean now, i only joined last night..

Similar Threads

  1. HELP BEGINNERS
    By javabeginners in forum Java Theory & Questions
    Replies: 13
    Last Post: November 15th, 2011, 12:50 PM
  2. Re: HELP BEGINNERS
    By Olenger in forum Java Theory & Questions
    Replies: 1
    Last Post: October 18th, 2011, 07:06 PM
  3. YAY for beginners
    By derbya in forum Member Introductions
    Replies: 2
    Last Post: August 16th, 2011, 04:54 AM
  4. Free Programming
    By freeprogramming in forum The Cafe
    Replies: 1
    Last Post: March 14th, 2010, 03:21 PM
  5. Need Java experienced developer for 4 Hrs of work
    By shakudada in forum Paid Java Projects
    Replies: 3
    Last Post: August 15th, 2009, 03:01 AM