The only thing I think would make these better would be adding examples of how these are used in real applications i.e. the dice thing would be used in games or something, something to tie it together with what we already know
im having a problem. When i try to run my array with both methods that Bucky showed us to write the arrays, i get a message saying Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 6 at Arrays.main(Arrays.java:25).
i get an answer to the first array method, but then this message appears. CAN ANYONE HELP ME PLZ!!! IT WOULD BE GREATLY APPRECIATED!!!
BTW, The reason that arrays and other objects like to start counting at zero is because of the electronic memory chips that are really doing the work. They can start to store information when their little binary resisters are completely empty, that is value 0000. If you don't use location 0000 then you are wasting space, and back in the earily days of computers you needed every memory location you could get.
To build on iEditEffects's comment, what I'm doing is clicking New Java class for each tutorial, pretty much copying his code, and adding my own comments where necessary as I watch and learn.
For those of you who don't know, to add a one-line comment, put // before it. To add a multiple-line comment, put /* at the beginning and */ at the end. Eclipse should automatically put a * at the beginning of every line but the first and last.
@FalconFetus8 I'm not sure if anyone's given you an answer to this yet. According do your array of int array[]={2,5,3,8,1,6,4]; you'd have to do (array[4]) if you wanted to print out 1, because the values in the array start from index 0, So, array[0] would print 2, array[1] would print 5.
How do you put in a method so that you can add something to the array list after running the program ? For example by typing something into a menu ....
if you will look at the minecraft blocks file (cant remmber the exact name) you will see the array of blocks whit the value of them exactly like in this totrial... :D
I feel like these tutorials to help me get started but I heard there was a book called Head First Java, got it for free and I'm loving the book, from 3 chapters, I learned about arrays and more about them. Plus more.
@Mordianmate i think what you mean is to store a lot of objects of the same class in an array, the fact is that you can, but to initialize those objects, you might need a for loop to store them in the array, so you would make an array with the type "classname" = new classname []; and then in the for loop, add as many objects as you want.
Ok, before I watch this tutorial, I just want to say that the one program language I tried before Java, was Expression 2. This was a garrysmod programming system. I was really good but once I hit arrays, I just sort of fell out of it because I never understood it, I kind of grasp the premise of arrays now, so lets hope this video can get the point across... I already have the chills o.0
@RazorSRaider Well, it's official, you got the point across to me. I'm actually in shock writing this because you just taught me what hundreds of garrysmod players could not. I think I love you o.0
I WAS JUST TRYING TO REMEMBER how to make a string variable. thank you for this comment lmao.. but! thats wrong xP. make sure you put quotes around each word in your string array.
I am the most impatient person, and almost every lessons before this I just skipped things and didn't get it D: Bucky, u are a great teacher, and I most certainly understand Java and programming a million times better now :)
Well it's their loss but even if I know C++ basics and there are a lot of similarities in loops etc. even if I don't learn anything new I go over each tutorial writing it out every single time, because it's the best way to learn IMHO :)
I am learning Java at school and am only using bucky's tutorials when I need some extra explanation (because our teacher doesn't explain stuff, all textbook). So when I get stuck sometimes I will watch his tutorial multiple times thus increasing the view count. I assume some others do the same thing.
@BUCKYAUSTIN What if one person is watching a video more than once because they need a refresher on that topic, or that topic is harder and they forget the code from that tutorial.
@theXminecrafter Just to tell ya dat was my twin who made that comment.... I have posted this before on this video.... but everyone feels like they should comment.... then i get spam emails telling me people have replied to me on this video even thou i didnt comment in the first place..... act i better just put that below my bro's post cause im getting sick of this.... no offence thou.... Array and array lists, in my opinion are the hardest part of java...
What u dont understand? in bucky is adding numbers..2,4,5,7,9, after he uses System.out.println..and he choses the number 2 in the list.. which is 5 because it starts from 0... 0=2 1=4 2=5 3=6 etc
@theXminecrafter i used to imagin arrays as a street, for e.g you have 20 houses in one street, 0-19 you pop the data into each house. all the houses are all contained in a street call "paper street" but have individual addresses for each house. apply that concept to arrays and your done!
@BUCKYAUSTIN This was my twin bro who made this comment above.... Please dont send me replies... there spamming my gmail.... My brother when he made this comment was only in his 2nd semester of 3 of which he is learning java.... So he was taught most of java even before he watched... He was ignorant to those people learning off bucky's tutorials.... He thought they were just for revision... not learning....
@BUCKYAUSTIN They may be (re)watching the parts they are having trouble on. I know if I have a problem in one of my programming classes youtube is the first place I goto.
@Squireeee I'm not sure, but I think that since you're using strings, you'll have to initialize it with data within double quotes, e.g. "bucky" instead of bucky. Try that.
@Gyohdon Yeah. :D Also the Minecraft-Newbies, that think: "Oh, imma go modding!" *watches 1st tut* "Oh, looks easy" ... *watches 5th tut* "Uhm... wait what? Oh, that's too high for me, imma quit!"
@chu240 Haha ^^ Great :D Me neither! Btw, I was actually starting with Java, because I heard about it from Minecraft and modding, but now I just learn it out of interest... AND for modding =D
@janvoslos Yeah, me, too :p Actually, I am like 20 videos ahead now, was looking for some new stuff, as I know all this from other languages ;) Now it gets interesting from #40 upwards :D
@TheKyshu btw look at the first "easy" vids VERY much minecraft avatars around these videos not so many :p btw i have done some modding with my knowledge :p
@Gyohdon I agree, impatience kills ambition. I gave up on this 3 months ago, i decided to come back, not sure if i would keep going, then i saw your comment.
"lets tighten this up alittle bit...thats what she said!"
haha i love you bucky so good at teaching me and also know how to use humor along the way every now and then, like your 1st ever gf..."she was a babe" haha
instead of erasing your work, you can press crtl + 7 to make everything into a comment, and press crtl + 7 again when you want to use it or run it again.
can someone please help me? I am try to using what i learned from these great tuts to make a tutorial but i forget how to set user input to a variable. what is the code for doing that? like it would say "Type your first num: " then you would type it in then store it in a variable, then it would say "Type your second num: " then you would type it in and it would store the second number in a variable say "your answer is: num1+num2"
@phi11ykid96 you probably shouldnt make a tutorial if you dont know how to do it. Anyway, you could just import a scanner and then have more then one scanner variable. Store those in a variable and then add them together and output it. Here's a basic example:
public class Learning{ public static void main(String args[]){ Scanner x = new Scanner(System.in); Scanner y = new Scanner(System.in); double z; double s; double r; System.out.println("Enter first number."); z = x.nextDouble();
System.out.println("Enter second number.");
s = y.nextDouble(); r = s + z; System.out.println("Your answer is "+ r); }
Watched a lot of these in a row then got distracted by the NixiePixel Barbie Seahorse video :)
EntropyVX 1 day ago
THAAAANKS!!!!!!!
kakshirocks101 6 days ago
Bucky: "It can only store values of the same data type"
Me: T.T "Java is an OOP language, so ..."
My code: Object array[] = {"hi",5};
AndroidAnyone 6 days ago in playlist Java (Beginner) Programming Tutorials
Weird, but the first three values he set are counting down, 87 is 8,7, 543 is 5,4,3 , 65 is 6,5. ZOMG
TheViolinCalamity 2 weeks ago
NOTE: With v1.7.x of Eclipse you can't do:
bucky[0]=1;
bucky[1]=2;
bucky[9]=3;
kagamers 2 weeks ago in playlist More videos from thenewboston
Youre the best thank you.
FrapsYou 2 weeks ago
System.out.println("Number of tuts to go" + (87-27));
XxxTheProGamerzxxX 3 weeks ago in playlist Java (Beginner) Programming Tutorials
@XxxTheProGamerzxxX And then there are the intermediate ones...
TheViolinCalamity 2 weeks ago
This has been flagged as spam show
maybe his first girlfriend taught him java,you can always hear him say"thats what she said"
COD5252 3 weeks ago
Comment removed
COD5252 3 weeks ago
Can you use arrays for save file in games eg to store the location of an object?
tonythedemon 3 weeks ago
Which IDE program are you using?
t6omada3 4 weeks ago
@t6omada3 Eclipse
XxxTheProGamerzxxX 3 weeks ago in playlist Java (Beginner) Programming Tutorials
@t6omada3 Oh god. You really shouldn't be hopping on at the 27th tutorial. Go back to the 1st.
JohFalnes 2 weeks ago
Thumbs up for buckyyy!! ^^
t6omada3 4 weeks ago
i love your tutorials they are so helpful and exciting i cant stop watching them
JakobRobert00 1 month ago
System.out.thatswhatshesaid
EMBvideos 1 month ago
You are really good at making tutorial videos... thank you so much for uploading this!
idiophreak 1 month ago
Comment removed
idiophreak 1 month ago
Thats what she said... Priceless :)
Stormrage32 1 month ago
watch this video!!!, arrays are used ALOT in a program!
leal901 1 month ago in playlist Java Programming Tutorials
I have exam after 5 hours
and this is better than stadying book ...
Hidokaka1 1 month ago
The only thing I think would make these better would be adding examples of how these are used in real applications i.e. the dice thing would be used in games or something, something to tie it together with what we already know
thomasbowersox 1 month ago 2
im having a problem. When i try to run my array with both methods that Bucky showed us to write the arrays, i get a message saying Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 6 at Arrays.main(Arrays.java:25).
i get an answer to the first array method, but then this message appears. CAN ANYONE HELP ME PLZ!!! IT WOULD BE GREATLY APPRECIATED!!!
Decepticons211 1 month ago
@Decepticons211 what's the code u type,write it here....
KimuraSetsuna 1 month ago
BTW, The reason that arrays and other objects like to start counting at zero is because of the electronic memory chips that are really doing the work. They can start to store information when their little binary resisters are completely empty, that is value 0000. If you don't use location 0000 then you are wasting space, and back in the earily days of computers you needed every memory location you could get.
Shakespeare1612 1 month ago
@Shakespeare1612 Your explanation makes little sense. Google "indices beginning at 0".
TheBlackDeath3 1 week ago
Uh, I Was Wondering If You Can Use Strings With Arrays. Is That Possible?
thecomputerkid11925 1 month ago in playlist Java Programming Tutorials
@thecomputerkid11925
yup, and don't ask questions that are very very easy to try by yourself :)
tonilocoable 1 month ago
@thecomputerkid11925 Yes. Instead of int[] Array= {1,2,3};
You can do String[] Array = {"Cat","Dog","Mouse};
firecopy 1 month ago
@firecopy Oops error. String[] Array = {"Cat", "Dog", "Mouse"};
(Forgot the " after Mouse)
firecopy 1 month ago
"that´s what she said" true, true
wtfucrazy 1 month ago
So arrays are basicly shortcuts?
MrKozeljko 1 month ago
Arrays are my friends now :3
TzKet4m 2 months ago in playlist More videos from thenewboston
So could an array serve as a replacement to having multiple variables?
spikedemon57 2 months ago in playlist More videos from thenewboston
To build on iEditEffects's comment, what I'm doing is clicking New Java class for each tutorial, pretty much copying his code, and adding my own comments where necessary as I watch and learn.
For those of you who don't know, to add a one-line comment, put // before it. To add a multiple-line comment, put /* at the beginning and */ at the end. Eclipse should automatically put a * at the beginning of every line but the first and last.
lNUMPUN 2 months ago
What's the difference between int[] bucky and int bucky[] ?
opeAFromRSBot 2 months ago in playlist Java Programming Tutorials
@opeAFromRSBot preference
MrMj357 2 months ago
@opeAFromRSBot they work the same
53knights 2 months ago in playlist Java Programming Tutorials
@opeAFromRSBot
I'm pretty sure there's no difference.
muhatashim 1 month ago
How do we prompt the user to enter in the array values and then have them print out for the user?
AJasinski3 2 months ago
An array is a variable that stores values of the same data type.
GoldnLion 2 months ago
Is there some way to have a variable "point" to an index in an array?
For example:
int index=5;
int array[]={2,5,3,8,1,6,4];
System.out.println(array[index]);
would print "1"?
FalconFetus8 2 months ago in playlist Java Programming Tutorials
@FalconFetus8 no, it would say 6 ...
gatoo23 2 months ago
@FalconFetus8 I'm not sure if anyone's given you an answer to this yet. According do your array of int array[]={2,5,3,8,1,6,4]; you'd have to do (array[4]) if you wanted to print out 1, because the values in the array start from index 0, So, array[0] would print 2, array[1] would print 5.
TheDinosaurHead 2 months ago in playlist Java Programming Tutorials
for people struggling to remember everything. Just right everything down and make a java file that you can go to for review.
THUMBS UP SO OTHERS CAN SEE.
iEditEffects 2 months ago in playlist More videos from thenewboston 4
Dear youtube,
this video only shows my like, please fix this, iediteffects.
iEditEffects 2 months ago in playlist More videos from thenewboston
JADIJADIJATA...
supervitallica 2 months ago
Nice job, liked and subscribed.
delanogaston 2 months ago
I'm loving your videos :). I'm 15 and my goal is to create an Operating System in the future. thank you :D
while (15 > 0)
{ System.out.println("<3");
}
uGxDemiZe 2 months ago
@uGxDemiZe You might want to learn "Assembly" language too, and have fun with that HAHAHAHAHA! :D
Claymore2408 2 months ago
@uGxDemiZe
Lines of code to create:
Windows XP - 45,000,000
Linux Kernel 2.6.35 - 13,500,000
Android OS - 12,141,638
MySQL - 1,900,000
donatelonow 2 months ago
LOL Bucky!! 4:44
DARKORBITPYRO 2 months ago 40
Comment removed
DARKORBITPYRO 2 months ago
Buck loves to smack that mouse button when he runs the programs.
DeLL116 3 months ago
AMAZING TUTORIAL,thanks dude
you only forgot one important thing:AN ARRAY IS AN OBJECT,NOT A VARIABLE.
and thus,thats the reason why you used NEW before declaring the data type (INT,in this case)
ChrisTheBest1992 3 months ago
This has been flagged as spam show
4:45 Did Bucky rlly just say a "Thats what she said" joke..Haha
0o0oyeah 3 months ago in playlist Java Programming Tutorials
Comment removed
0o0oyeah 3 months ago in playlist Java Programming Tutorials
nevermind
jdwilliams92 3 months ago
if i wanted to create an array of variables how would i do so?
jdwilliams92 3 months ago
How do you put in a method so that you can add something to the array list after running the program ? For example by typing something into a menu ....
proudwelsh 3 months ago in playlist Java Programming Tutorials
thank you u really helped me
waddahd 3 months ago
@kile392jr1 Same here
knight11ind 3 months ago in playlist Java Programming Tutorials
lmao... that what she said
sparkplug987 4 months ago in playlist TheNewBoston - Java Programming
Bucky I love you
ninjamuffin289 4 months ago
@kile392jr1 Reach for the stars, I guess, hahaha.
TheSciurusDoomus 4 months ago in playlist Java Programming Tutorials
:D This looks very useful in the future!
umcarainteressante 4 months ago in playlist Java Programming Tutorials
if you will look at the minecraft blocks file (cant remmber the exact name) you will see the array of blocks whit the value of them exactly like in this totrial... :D
ASWE323 4 months ago in playlist Java Programming Tutorials
I feel like these tutorials to help me get started but I heard there was a book called Head First Java, got it for free and I'm loving the book, from 3 chapters, I learned about arrays and more about them. Plus more.
arka181 4 months ago
haha thats what she said ..
best teacher ever
Helfi92 4 months ago 2
Comment removed
martinezjerome05 4 months ago
minecraft?
Artickkingdom 5 months ago
@Artickkingdom the most awesome 3d game if you haven't seen it.
chrisall76 4 months ago in playlist java tutorials
Every video that I know, has a lot of videos in the beginning and ends up getting less and less
paulceltics 5 months ago
can i use arrays to create objects? if i wanted to create many objects with the same class?
Mordianmate 5 months ago in playlist java the new boston
@Mordianmate i think what you mean is to store a lot of objects of the same class in an array, the fact is that you can, but to initialize those objects, you might need a for loop to store them in the array, so you would make an array with the type "classname" = new classname []; and then in the for loop, add as many objects as you want.
Xeinnex1 4 months ago
Those 8 who disliked is a java instructor haha
jayrvampyreloaded 5 months ago
Does this mean that Sean Day[9] Plott is an array?
MarvelSpartan7 5 months ago in playlist Java Programming Tutorials
Ok, before I watch this tutorial, I just want to say that the one program language I tried before Java, was Expression 2. This was a garrysmod programming system. I was really good but once I hit arrays, I just sort of fell out of it because I never understood it, I kind of grasp the premise of arrays now, so lets hope this video can get the point across... I already have the chills o.0
RazorSRaider 5 months ago
@RazorSRaider Well, it's official, you got the point across to me. I'm actually in shock writing this because you just taught me what hundreds of garrysmod players could not. I think I love you o.0
RazorSRaider 5 months ago
BUCKY ZERO ADIADIADA LOL!
TheElip100 6 months ago
I felt so stupid at the end of the video when I went to try and un-highlight the text :S
loesch94 6 months ago
@loesch94 hahahahaahahhaah, i did the same
GPROJify 5 months ago
String bucky[]={great teacher,awesome person,cool guy,very _helpful to_ me};
System.out.Println("newboston bucky is a ",bucky[0]);
output: newboston bucky is s great teacher
SuperRamko 6 months ago
Comment removed
VaginosaurusRex 6 months ago
I WAS JUST TRYING TO REMEMBER how to make a string variable. thank you for this comment lmao.. but! thats wrong xP. make sure you put quotes around each word in your string array.
VaginosaurusRex 6 months ago
java told me, alright, you are about to do an array!
Aaronster8 6 months ago
Comment removed
ReacTioNxSnipeZHD 6 months ago
@ReacTioNxSnipeZHD I'm actually a Minecrafter... And a top commentor lol
Gyohdon 6 months ago
I am the most impatient person, and almost every lessons before this I just skipped things and didn't get it D: Bucky, u are a great teacher, and I most certainly understand Java and programming a million times better now :)
connbman1 6 months ago
Well it's their loss but even if I know C++ basics and there are a lot of similarities in loops etc. even if I don't learn anything new I go over each tutorial writing it out every single time, because it's the best way to learn IMHO :)
kkacper89 6 months ago 2
the curly bracket things are called keys...
StrongeMan358 6 months ago in playlist Bucky's Java Tutorial
People shouldn't skip videos. They need to know this stuff.
MilesTubeTV 6 months ago
Thx for the lessons ive been watching for awhile hopefully i can master java with your lessons
dtgonzalez1 6 months ago
tutorial 26 had 94,686 views but
tutorial 27 had 113,775 views
if ur only learning java it prob best to watch them all. as clearly seen here ppl are skipping stuff.
BUCKYAUSTIN 6 months ago 32
@BUCKYAUSTIN either that or people already know the math class but dont know arrays
baseball4ever1121 6 months ago
@BUCKYAUSTIN
I am learning Java at school and am only using bucky's tutorials when I need some extra explanation (because our teacher doesn't explain stuff, all textbook). So when I get stuck sometimes I will watch his tutorial multiple times thus increasing the view count. I assume some others do the same thing.
1chapper 4 months ago in playlist Java Programming Tutorials
@BUCKYAUSTIN What if one person is watching a video more than once because they need a refresher on that topic, or that topic is harder and they forget the code from that tutorial.
gixxygamma 4 months ago in playlist Java Programming Tutorials
@BUCKYAUSTIN I have watched this video many times because I dont really get it. the last one i only watched once
theXminecrafter 3 months ago 34
@theXminecrafter Just to tell ya dat was my twin who made that comment.... I have posted this before on this video.... but everyone feels like they should comment.... then i get spam emails telling me people have replied to me on this video even thou i didnt comment in the first place..... act i better just put that below my bro's post cause im getting sick of this.... no offence thou.... Array and array lists, in my opinion are the hardest part of java...
BUCKYAUSTIN 3 months ago
@theXminecrafter i got it the first time.. :P
ExSeaD 2 months ago in playlist More videos from thenewboston
@theXminecrafter
What u dont understand? in bucky is adding numbers..2,4,5,7,9, after he uses System.out.println..and he choses the number 2 in the list.. which is 5 because it starts from 0... 0=2 1=4 2=5 3=6 etc
TheDemonStr 2 weeks ago
@theXminecrafter its so easy,u just have one variable with many values
1osmit 3 days ago in playlist Java (Beginner) Programming Tutorials
@theXminecrafter i used to imagin arrays as a street, for e.g you have 20 houses in one street, 0-19 you pop the data into each house. all the houses are all contained in a street call "paper street" but have individual addresses for each house. apply that concept to arrays and your done!
beattie282 2 days ago in playlist Java (Beginner) Programming Tutorials
@BUCKYAUSTIN This was my twin bro who made this comment above.... Please dont send me replies... there spamming my gmail.... My brother when he made this comment was only in his 2nd semester of 3 of which he is learning java.... So he was taught most of java even before he watched... He was ignorant to those people learning off bucky's tutorials.... He thought they were just for revision... not learning....
BUCKYAUSTIN 3 months ago
@BUCKYAUSTIN reply
DinosaurSuccess 2 months ago
@BUCKYAUSTIN it also means people are randomly searching up java how to videos and have stumpled upon this one more then the last one
AlchemistiK1 3 months ago
@BUCKYAUSTIN They may be (re)watching the parts they are having trouble on. I know if I have a problem in one of my programming classes youtube is the first place I goto.
12me91 3 months ago
The nonchalant "that's what she said" at 4:47 was CLASSIC!
jaryane22 6 months ago
bucky[Bucky]=AWSOME!!!!!!!!!!!!!!!
Asadleo3 6 months ago
bucky.length... answered my own question
matthewdoucette 7 months ago
Is there a way to find out how many elements are in the array?
matthewdoucette 7 months ago
lol 777 likes and 7 dislike :)
matanzie 7 months ago
Thats what she said.
WishFredWasDead 7 months ago
4:45 BEST PART!
pantellica051 7 months ago
This has been flagged as spam show
Thumbs up if you don't read the comments
coolbob44 7 months ago
click the ads for bucky!
XRenkoX 8 months ago 6
if i wanted to do a string array, what would i type? string bucky[] doesn't work...
Squireeee 8 months ago
@Squireeee I'm not sure, but I think that since you're using strings, you'll have to initialize it with data within double quotes, e.g. "bucky" instead of bucky. Try that.
prisoncrasher 8 months ago
@Squireeee You do
String bucky = new String[10];
kcolin6701 8 months ago 2
@kcolin6701 thanks
Squireeee 8 months ago
Java tutorial 1 - 750,000+ views.
Java tutorial 5 - 250,000+ views
Java tutorial 27 - 99,906 views
Impatience kills ambition.
Gyohdon 8 months ago 254
@Gyohdon Yeah. :D Also the Minecraft-Newbies, that think: "Oh, imma go modding!" *watches 1st tut* "Oh, looks easy" ... *watches 5th tut* "Uhm... wait what? Oh, that's too high for me, imma quit!"
That's my definition for it ^^
TheKyshu 7 months ago 7
@TheKyshu lol, I've got some crazy thumbs up, hahaha
Gyohdon 7 months ago
@TheKyshu 100% Correct
GParadise8 7 months ago
@TheKyshu I'M NOT GIVING UP THAT EASILY! >:D
chu240 7 months ago
@chu240 Haha ^^ Great :D Me neither! Btw, I was actually starting with Java, because I heard about it from Minecraft and modding, but now I just learn it out of interest... AND for modding =D
TheKyshu 7 months ago
@TheKyshu yeah its pretty funny that most of the comments are from people with minecraft avatars :p
i'm here because I'm bored and java seems pretty easy i still get it till now
janvoslos 7 months ago
@janvoslos Hm? People with Minecraft avatars? *looks at himself* Cough. I dont think so. :p
TheKyshu 7 months ago
@janvoslos Yeah, me, too :p Actually, I am like 20 videos ahead now, was looking for some new stuff, as I know all this from other languages ;) Now it gets interesting from #40 upwards :D
TheKyshu 7 months ago
@TheKyshu Nice ! i know the standard from C# and i have done a bit of objective-C
but gl !
janvoslos 7 months ago
@TheKyshu btw look at the first "easy" vids VERY much minecraft avatars around these videos not so many :p btw i have done some modding with my knowledge :p
janvoslos 7 months ago
@janvoslos Me, too, but before I came to Bucky :P I had soem other text-based tut, but it wasnt as good.
And I based my very simple mod on ModLoader ^^
TheKyshu 7 months ago
@Gyohdon
Java tutorial 29- 83,235 views
Java tutorial 30- 93,344 views
Well it looks like some programmers and going to go
'I know array elements as counters but not sure of other elements'
DarthLOL293 7 months ago
@Gyohdon yes, i think people also want to skip to places they want to got to.... see episode 50 or 51, where he starts using gui. it has 150 k views.
Phillie103 6 months ago
@Gyohdon weedin out tha rest...lol
tlmcqu80 6 months ago
@Gyohdon yes i am thinking the same thing!!!
cliffgoat 6 months ago
@Gyohdon truly...
showan412 6 months ago
@Gyohdon
tutorial 1 has lots of views because every time i go on bucky's playlist it shows the first vid
awesomelemonade 6 months ago
@Gyohdon If they had the ambition, they wouldn't be impatient.
Ivyyyn 6 months ago
@Gyohdon
Amen! it took me 2 years to finally be fluid in programming and another 2 years to be "good" I anticipate another 6 to become an expert :-)
tigermanxng 5 months ago in playlist Java Programming Tutorials
@Gyohdon I agree, impatience kills ambition. I gave up on this 3 months ago, i decided to come back, not sure if i would keep going, then i saw your comment.
DarthLOL293 4 months ago in playlist Java Programming Tutorials
@DarthLOL293 I bet you feel bad about yourself now =P
Gyohdon 4 months ago
@Gyohdon but we go on!
j4ss13nl 4 months ago
Bucky you are the best!
TotteTheBreaker 9 months ago
WOOHOOO FOR BOSTON BIG FAN BRO TY FOR HELP!
xxcky1 9 months ago 2
@xxcky1 fan bro...
toy741life 9 months ago
@toy741life 0_o yep he's a beast
xxcky1 9 months ago
7 Didnt want to get the surprise cake.
ServerBoost100 9 months ago
commenting on the amount of dislikes makes people want to dislike it to be spiteful.
So don't for the sake of bucky
MrDelusionalPenguin 9 months ago in playlist Java Programming Tutorials
"lets tighten this up alittle bit...thats what she said!"
haha i love you bucky so good at teaching me and also know how to use humor along the way every now and then, like your 1st ever gf..."she was a babe" haha
paulandhiscrap777 9 months ago
for(int i=0;i<10;i++){ System.out.println(bucky[i]); // this prints the whole array,..SRBIJA!
FreeeBirdie 10 months ago
@FreeeBirdie for (i=0;i<=10;i++) { for (j=0;j<=i;j++) { System.out.println(bucky[i])} System.out.println("\n"); } Will make a pyramid !
tutorialconr 9 months ago in playlist Java Programming Tutorials
hey guys ive been searching for an object orientated programming array for java tutorial, is there one on this channel?
TELFORD88 10 months ago
This has been flagged as spam show
I think the 6 people disliking are only trying to be different.
licriss 10 months ago
How to Scan string and put it into array ??
turbocobol 10 months ago
@turbocobol yes the same question i have?
EmileNani 10 months ago
@turbocobol
import the scanner, and myArray[aNumber] = yourScanner.nextLine();
sukrett 10 months ago
It must be 'int[] numbers' *NOT* 'int numbers[]'!
daGrevis 10 months ago
Genius just Genius!
lordleipo2 10 months ago
instead of erasing your work, you can press crtl + 7 to make everything into a comment, and press crtl + 7 again when you want to use it or run it again.
AdventKingBand 11 months ago
"thats what she said" lol
superb00ey 11 months ago 81
array[1]subscribtvalue, array[2]subscrblblblbl :D ^^
EckoFresh92 11 months ago
System.out.println("Let's tighten this up a little bit. That's what she said.");
LOL
Bluesparx11 11 months ago 2
This has been flagged as spam show
I have always watched Youtube videos for calc and diff eq help. After all these times of being butchered by java, why didn't I think about Youtube?!
BCPham 11 months ago
I have always watched Youtube videos for calc and diff eq help. After all these times of being butchered by java, why didn't I think about Youtube?!
BCPham 11 months ago
can someone please help me? I am try to using what i learned from these great tuts to make a tutorial but i forget how to set user input to a variable. what is the code for doing that? like it would say "Type your first num: " then you would type it in then store it in a variable, then it would say "Type your second num: " then you would type it in and it would store the second number in a variable say "your answer is: num1+num2"
phi11ykid96 11 months ago
@phi11ykid96 check ur inbox
spikey6009 11 months ago
@phi11ykid96 you probably shouldnt make a tutorial if you dont know how to do it. Anyway, you could just import a scanner and then have more then one scanner variable. Store those in a variable and then add them together and output it. Here's a basic example:
LordViper71 11 months ago
@phi11ykid96 import java.util.Scanner;
public class Learning{ public static void main(String args[]){ Scanner x = new Scanner(System.in); Scanner y = new Scanner(System.in); double z; double s; double r; System.out.println("Enter first number."); z = x.nextDouble();
System.out.println("Enter second number.");
s = y.nextDouble(); r = s + z; System.out.println("Your answer is "+ r); }
}
LordViper71 11 months ago
This has been flagged as spam show
import java.util.Random;
public class LearnJava{ public static void main(String args[]){ String names[] = {"Frank Lampard", "John Terry", "Petr Cech", "Didier Drogba", "David Luiz", "Fernando Torres", "Ashley Cole", "Branislav Ivanovic", "Michael Essien", "Ramires", "Florent Malouda", "Nicolas Anelka", "Alex", "Solomon Kalou", "Yuri Zhirkov"}; Random rand = new Random(); int num = rand.nextInt(15); System.out.println("Your favorite player is: " + names[num]); }
}
kymykaly 1 year ago