Is there any simple way to create packages in Java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

Is there any simple way to create packages in Java?

I'm asking it, because in YouTube videos, they are confusing me with this, super and constructors.

24th Jan 2017, 7:18 PM
Ajay Agrawal
Ajay Agrawal - avatar
16 Answers
+ 11
@Ajay I have school.
25th Jan 2017, 2:50 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 10
@Ajay "Ajay : The FreeLancer" nice! ^_^ when did you get this new title??
24th Jan 2017, 7:53 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 5
sorry Luka, but that was odd place for me 🐕
24th Jan 2017, 7:42 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 5
because I have no tag of any organizations or company etc.
24th Jan 2017, 7:54 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 5
Sorry Myrna Lacson, but your program is something extraordinary for me. but I think you should try to pass all three values as parameters on compute() method.
25th Jan 2017, 3:21 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 4
what book I prefer to learn basics?
24th Jan 2017, 7:28 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 4
thanks for help Luka
24th Jan 2017, 7:34 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 4
Packages in Java? Very useful for structuring your projects. Your public classes have filenames matching the classname, e.g. Test.java contains a public class Test Packages behave the same, just with folders. (Packages should be named after a TLD you own...) An example: If the backend from SoloLearn runs on Java, they have packages starting with: com.sololearn and if there is one class Main it looks like package com.sololearn; public class Main { ....... and it is in a file in the sourcetree: /somewhereInTheFilesystem/com/sololearn/Main.java
25th Jan 2017, 9:35 AM
bem
bem - avatar
+ 3
HI
25th Jan 2017, 2:20 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 3
Valentine, I have to discuss with you something strange.
25th Jan 2017, 2:20 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 3
please come
25th Jan 2017, 2:21 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 3
yup
25th Jan 2017, 2:51 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 3
did you get that problems?
25th Jan 2017, 2:52 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 3
thanks bem, your answer was so helpful for me
25th Jan 2017, 2:54 PM
Ajay Agrawal
Ajay Agrawal - avatar
+ 2
You can use Ant builder if you are begginer. For a little bit bigger projects I recommend using Maven. For enterprise applications, use Gradle. If you want to become freelancer, you truly need to know how to pack your classes. If you asking about packages in project structure... You just create new folder in your project main folder.
25th Jan 2017, 10:45 AM
Maksym Zieliński
Maksym Zieliński - avatar
+ 2
I cant get the average. someone help me. thankyou <!DOCTYPE html> <html> <head> <title>Grade Computation</title> </head> <body> <form id="grade"> grade1: <input type="type" id="g1"></input> grade2: <input type="type" id="g2"></input> grade3: <input type="type" id="g3"></input> <input type="button" value="compute" onclick="compute()"></input> <script> function compute() { var total =((g1+g2+g3)/3) alert("Average: " + total); } </script> </body> </html>
25th Jan 2017, 3:12 PM
Myrna Lacson
Myrna Lacson - avatar