Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
lab01 - COMP2511 Lab 01 Due: Week 1, Sunday, 5:00 pm Value: 1 mark Aim Become familiar with course practices for labs Learn how to use GitLab effectively Learn how to create, compile and run a java program from the command-line Gain familiarity with java development using Eclipse IDE Introduce simple Java exercises based on topics covered in week 1 Preamble For this and all future labs you must submit your lab work by the deadline in order to get marked. Each lab is worth 1 or 2 marks. You will need to show your work to you tutor or lab assistant in either the lab it is done or the subsequent lab. They will provide you feedback and give you your marks. Submission instructions are at the end of the exercise below. Setup 1. GitLab An individual repository for you for this lab has been created for you on the CSE GitLab server. You can find it at this URL (substituting z5555555 for your own zID): https://gitlab.cse.unsw.edu.au/z5555555/19T3-cs2511-lab01 You will need to log in with your zID and zPass. If you are unable to login please speak to your tutor or lab assistant. If you're familiar with GitHub then you should find GitLab very similar. You'll observe that there is a copy of these instructions in the repository (README.md) as well as a few files and folders relating to this lab exercise. Feel free to browse GitLab in order to familiarise yourself with it. If you're not familiar with git, the following sections should help get you started learning it. 2. Adding Your SSH Key to GitLab The following steps should be performed by running the commands on the CSE system. You may also wish to do the same on your personal computer to avoid repeatedly entering your username and password. You need to add your CSE ssh key to your gitlab.cse.unsw.edu.au account. Here is how you do that: First print your CSE ssh key. If you have one, this command should should work. $ cat ~/.ssh/id_rsa.pub ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAyNSzIDylSPAAGLzUXdw359UhO+tlN6wWprSBc9gu6t3IQ1rvHhPoD6wcRXnonY6ytb00GpS4XRFuhCghx2JNVkXFykJYt3XNr1xkPItMmXr/DRIYrtxTs5sn9el3hHZIgELY8jJZpgIo303kgnF0MsB7XpqCzg7Iv6JGkv7aEoYC/MNr07hXE8iQjYIHDMdO9HxGI80GyMqb1hF+RSpQTNvXQvH56juu9VXt5OwJjOqSVa4SfsEICqdn+3k9w8Z4EaD93Eeog3hz0RoTrme8h/sJenXydJ0w9ZOs0By4fjqKFYPsYEs1K6SHma+kPByZM9COgKHZwOZHH1m24HOITQ== z5555555@williams If you couldn't print an ssh key with the above command, you need to generate a new ssh key. You can do it like this (just hit return for each question). $ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/import/kamen/3/z5555555/.ssh/id_rsa): Created directory '/import/kamen/3/z5555555/.ssh'. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /import/kamen/3/z5555555/.ssh/id_rsa. Your public key has been saved in /import/kamen/3/z5555555/.ssh/id_rsa.pub. The key fingerprint is: b8:02:31:8b:bf:f5:56:fa:b0:1c:36:89:ad:e1:cb:ad z5555555@williams The key's randomart image is: ... To add your key to GitLab go to https://gitlab.cse.unsw.edu.au/profile/keys/ If you're asked to log in again, do so. Cut-and-paste your ssh-key (the entire 200+ character line printed by cat ~/.ssh/id_rsa.pub) into the "Key" field. Don't cut-and paste z5555555's ssh key above - cut-and-paste your ssh-key! The title field should be filled in automatically. Click the green Add Key button Using git This exercise is intended to help you (re)familiarise yourself with git. As git usage was covered in COMP1531, a prerequisite for this course for the past 2 years, we expect most students to already be familiar with it, so this exercise should not take you long. If you're taking this course under the old program (i.e. you've not taken COMP1531) and you've not become familiar with git via other means then this exercise may require more careful attention. Getting git Git is a distributed version control system. It allows you to record changes to a set of files over time and synchronise those changes across many repositories. You've already seen one git repository earlier in the lab: the one stored at gitlab.cse.unsw.edu.au. You don't have direct access to that computer, so in order to make changes to files contained within it, you need to copy it to a local repository. You can make changes to this local repository then "push" those changes to GitLab. To do that however, git needs to be installed and configured: git is installed on the computer you are using. You can do this by running: $ git status If it is installed you will see something like fatal: Not a git repository (or any of the parent directories): If you do not have git installed, you will see something like bash: git: command not recognized If this is the case, you will have to set it up using the following instructions Linux - Follow instructions at https://git-scm.com/download/linux Mac - brew install git Configure git if you have not used it before. The following commands will do that. $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" Cloning Cloning a repository (a repository or repo is just a directory that is linked with git) copies to your computer all the files in the repo as well as a complete history of what changes, or commits, created those files. Cloning a repo is necessary before you can start making your own changes. For each lab and assignment in this course, a repo will be created for you on GitLab. You will use it to store your work as you complete it. To clone this week's repo run: $ git clone gitlab@gitlab.cse.unsw.EDU.AU:z5555555/19T3-cs2511-lab01.git Making a commit Now that you have cloned the repo, you are ready to work on the codebase locally. A commit represents a set of changes to the files in a repository as well as a message describing those changes for human readers. A good use of git involves a lot of commits with detailed messages. Before you can commit, you have to stage your changes, effectively telling git what changes you actually want to commit and what changes you don't. Making commits doesn't actually replicate your changes to the remote repository on GitLab. For that you need to push your commits, uploading them to the remote server. When collaborating with others, it is important not only to commit frequently, but also to push often. In general, the commands to commit and push are as follows: $ git add [files_to_commit] # Stage $ git commit -m"Detailed message describing the changes" # Commit $ git push # Push Follow these steps to see them in action: Add a new file called HelloWorld.java in the repo directory Add the following lines of code to the file using your favourite text editor and save. class HelloWorld { public static void main(String[] args) { System.out.println("Hello, Welcome to COMP2511!"); } } Go back to your terminal and enter the following commands: git add HelloWorld.java git commit -m "Created first java program HelloWorld.java" git push MAKE SURE YOU UNDERSTAND THE PURPOSE OF EACH OF THE 3 ABOVE COMMANDS! If you are unsure about any of them, ask your tutor or lab assistant. Go back to GitLab and confirm that your changes have been pushed to the server. Working with others Usually when you are using git, it is in a team. That means that you will not be the only one who is making the changes. If someone else makes a change and pushes it to the server, your local repo will not have the most up to date version of the files. Luckily, git makes it easy to update our local copy with the git pull command. This command checks the remote server that your local repo is linked to and makes sure that all of your files are up to date. This ensures that you don't accidentally do things like implement the same thing someone else has already done and also lets you use other people's work (e.g. new functions) when developing. Pulling regularly is one of the most important practices in git! Unfortunately, at the moment you are just working individually. But GitLab still gives us a nice way to practice a git pull. Summary: View your repo on GitLab. Click on the HelloWorld.java file Click 'Edit' on the right-hand side. Add a Java comment to the top of the file as shown below and click the ‘Commit Changes’ button at the bottom of the screen // A simple Java Program This will have changed the HelloWorld.java file on the server but not on your local environment. To fetch these changes use the git pull command from your terminal Confirm that your version of HelloWorld.java now has the changes you made on the web page Branching Branches are a vital part of git and are used so people can work on separate parts of the codebase and not interfere with one another or risk breaking a product that is visible to the client. Breaking something on one branch does not have an impact on any other. Good use of git will involve separating parts of the project that can be worked on separately and having them in their own feature branch. These branches can then be merged when they are ready. Useful commands for branches: $ git checkout -b [new_branch_name] # Create a new branch and switch to it $ git branch # List all current branches $ git checkout [branch_name] # Switch to an existing branch Follow these instructions to create a branch: Make your new branch with: git checkout -b first_new_branch List your branches to see that you have indeed swapped (use the above commands) Open the HelloWorld.java file and change the comment at the top of the file to Javadoc style comment as shown below: /** * A simple java program that prints a hello world message to the console * */ Try to push your changes to the server using the commands you learnt in the Making a commit section The above step should have given you the following error: fatal: The current branch first_new_branch has no upstream branch. This means that the branch you tried to make a change on doesn’t exist on the server yet which makes sense because we only created it on our local machine. To fix this, we need to add a copy of our branch on the server and link them up so git knows that this new branch maps to a corresponding branch on the server git push -u origin first_new_branch Note: The final step only needs to be done for the first time you try to push using a new branch. After you have run this once, you should go back to simply using git push Merging Merging branches is used to combine the work done on two different branches and is where git's magic really comes in. Git will compare the changes done on both branches and decide (based on what changes were done to what sections of the file and when) what to keep. Merges are most often done when a feature branch is complete and ready to be integrated with the master branch. Since we have finished all that we are going to do (and think there are no bugs) on our first_new_branch we can merge it back into master. NOTE: It is strongly recommended, both in this course and in general, to always ensure the code on the master branch compiles and is free of bugs. The latter is naturally harder to achieve than the former, but you should endeavour to keep master as stable as possible. Another recommendation is to merge master into your branch before merging your branch into master as this will ensure that any merge into master will go smoothly. In general, merges are done by: git merge [target] # Merge the target branch into current Note: A successful merge automatically uses the commits from the source branch. This means that the commits have already been made, you just need to push these to the server (git push) To merge your changes from above: Switch back to the master branch using one of the commands from the above section Merge in the changes you made in the other branch git merge first_new_branch Push the successful merge to the server to update the master branch on the server Merge conflicts Merge conflicts are the one necessary downside to git. Luckily, they can be avoided most of the time through good use of techniques like branches and regular commits, pushes and pulls. They happen when git cannot work out which particular change to a file you really want. For this step we will engineer one so you can get a taste of what they are, how they occur and how to fix them. This will be the LAST time you will want one. The process may seem involved but it is quite common when multiple people are working at a time. Follow these steps: Change line 3 of HelloWorld.java to System.out.println("Hello, Welcome to Java!"); Add, commit and push your changes Switch to your first_new_branch Change line 3 of HelloWorld.java System.out.println("Hello, Welcome to merge conflicts!"); Add, commit and push your changes Merge master into your current branch This sequence of steps should make a merge conflict at the third line of HelloWorld.java Resolving a merge conflict Resolving a merge conflict is as simple as editing the file normally, choosing what you want to have in the places git wasn't sure. A merge conflict is physically shown in the file in which it occurs. <<<<<<< marks the beginning of the conflicting changes made on the current (merged into) branch. ======= marks the beginning of the conflicting changes made on the target (merged) branch. >>>>>>> marks the end of the conflict zone. E.g. This line could be merged automatically. There was no change here either <<<<<<< current:sample.txt Merges are too hard. This change was on the 'merged into' branch ======= Merges are easy. This change was made on the 'merged' branch >>>>>>> target:sample.txt This is another line that could be merged automatically This above example could be solved in many ways, one way would be to just use the changes made on the target branch and delete those made on the current branch. Once we have decided on this we just need to remove the syntax. The resolved file would be as follows This line could be merged automatically. There was no change here either Merges are easy. This change was made on the 'merged' branch This is another line that could be merged automatically We would then just commit the resolved file and the merge conflict is finished! To fix the conflict you created: Open the HelloWorld.java file and decide which change you want to keep Remove the merge conflict syntax Add, commit and push the resolved merge conflict Testing Checkout master and merge first_new_branch back into it. You can now run the test_git.sh file to check whether you have done most of the git exercises. Java Introduction Create a new branch called java_exercises to complete the following exercises. Remember to merge back into master when you are finished. Compiling and running your first Java program at the command line At the terminal, to compile your java program HelloWorld.java invoke the Java compiler as follows: javac HelloWorld.java Once, your program has compiled successfully into Java bytecode, you should be able to see a file HelloWorld.class Next, to interpret and run the java program, invoke the Java VM byte code interpreter as follows: java HelloWorld At the terminal, you should be able to see: Hello, Welcome to Java! or Hello, Welcome to merge conflicts! Setting up Eclipse on Lab Machines and importing the HelloWorld.java While we can compile and execute Java via the command line, it is generally easier to work with Java in an Integrated Development Environment (IDE). In this course, we will be using Eclipse for this purpose. These steps assume you're using a lab machine, but using your own computer. From a terminal, execute eclipse: this should start up a version of Eclipse in a new window Follow the prompts, and set up a workspace directory for eclipse in your home (or sub-) directory If asked, you do not need to enable anything related to the Scala IDE plugin If you see a welcome screen, close it to reveal a Java perspective Your repository for this lab has already been setup as an Eclipse project, so you can just import it directly. To do so, go to File > Import.... In the list that comes up, under General select Existing Projects into Workspace and click next. On the subsequent screen, click browse at the top right and select the 19T3-cs2511-lab01 directory. In the Package Explorer (panel on the left), locate the 19T3-cs2511-lab01 project and click on it. You should see a folder named src and the file HelloWorld.java. Because HelloWorld.java isn't inside the src directory, eclipse doesn't try to compile it. Drag it into the src directory. Open HelloWorld.java by double clicking on it. Run this programs in Eclipse via Run > Run As ... > Java Application or hit the Play button after setting up a Run Configuration Look at the Console to see the output (or at the Problems tab for any bugs) HINT: Now would be a good time to commit your changes with git. Make sure your commit doesn't duplicate HelloWorld.java! Calculate the average of an array of numbers A class is similar to a struct in the C language in that it stores related data in fields, where the fields can be different types. Open the file Average.java. You will find a class named Average. This class defines a method computeAverage() that takes in an array of integers and returns the average of this numbers. You are required to implement this method. Hint: To complete this task, you need to compute the sum of the numbers and the total number of elements Use a for loop to traverse the list of numbers and compute the sum of the number. Use nums.length to get the length of the array, after the sum has been computed. Next, define a main() method. Note: Every Java application needs one class with a main() method. This class is the entry point for the Java application and is the class name passed to the java command to run the application. The interpreter executes the code in the main() method when the program starts, and is the point from which all other classes and corresponding methods are invoked. Inside the main() method, initialise an array of integers and invoke the method computeAverage(), passing it as an argument Hint: computeAverage() is an instance method, hence you must create an instance of the class Average and invoke the method on this instance Assign the result of this method to a variable and print the variable Splitting up words Modify Splitter.java in the examples package such that it reads from System.in a line consisting of words separated by a space and prints out the individual words in the string e.g., If the input was: Help I'm trapped in a Java program The output should display as: Help I'm trapped in a Java Program Once completed commit and push your changes. Submission Submit your lab by running: $ 2511 submit lab01 This will submit the contents of the master branch on your GitLab repo, so make sure to commit and push your changes. It must be run on a CSE computer (either remotely via vlab or ssh, or on a physical lab computer), but it can be run from any directory as it does not depend on any local files. It is NOT necessary to copy files into your CSE account. Once you have submitted a record of it is created on GitLab. In your repo, if you click on Tags you will see a submission tag clicking on that will show a log for your submission. Prologue If you finished the lab task early, well done! Talk to some of the other people in your lab. Maybe help them out if they need it. Also, think about who you'd like as a project partner. You'll need to have one by the end of week 3!