forked from fineanmol/Hacktoberfest2026
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocumentation.html
More file actions
495 lines (438 loc) · 15.7 KB
/
Copy pathDocumentation.html
File metadata and controls
495 lines (438 loc) · 15.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
<nav id="navbar">
<header>Java Documentation</header>
<ul>
<li><a class="nav-link" href="#Introduction">Introduction</a></li>
<li><a class="nav-link" href="#Syntax">Syntax</a></li>
<li><a class="nav-link" href="#Comments">Comments</a></li>
<li><a class="nav-link" href="#Variables">Variables</a></li>
<li><a class="nav-link" href="#Data_Types">Data Types</a></li>
<li><a class="nav-link" href="#Type_Casting">Type Casting</a></li>
<li><a class="nav-link" href="#Operators">Operators</a></li>
<li><a class="nav-link" href="#If_else_Statement">If else Statement</a></li>
<li><a class="nav-link" href="#Switch">Switch</a></li>
<li><a class="nav-link" href="#While_Loop">While Loop</a></li>
<li><a class="nav-link" href="#For_Loop">For Loop</a></li>
<li><a class="nav-link" href="#Break_Continue">Break Continue</a></li>
<li><a class="nav-link" href="#Arrays">Arrays</a></li>
<h3>Java Classes</h3>
<li><a class="nav-link" href="#OOP">OOP</a></li>
<li><a class="nav-link" href="#Classes">Classes</a></li>
<li><a class="nav-link" href="#Constructors">Constructors</a></li>
<li><a class="nav-link" href="#Encapsulation">Encapsulation</a></li>
<li><a class="nav-link" href="#Inheritance">Inheritance</a></li>
<li><a class="nav-link" href="#Polymorphism">Polymorphism</a></li>
<li><a class="nav-link" href="#Abstraction">Abstraction</a></li>
<li><a class="nav-link" href="#Reference">Reference</a></li>
</ul>
</nav>
<style>
body {
min-width: 290px;
color: #4d4e53;
background-color: #ffffff;
font-family: 'Open Sans', Arial, sans-serif;
line-height: 1.5;
}
#navbar {
position: fixed;
min-width: 290px;
top: 0px;
left: 0px;
width: 300px;
height: 100%;
border-right: solid;
border-color: rgba(0, 22, 22, 0.4);
}
header {
color: black;
margin: 10px;
text-align: center;
font-size: 1.8em;
font-weight: thin;
}
#main-doc header {
text-align: left;
margin: 0px;
}
#navbar ul {
height: 88%;
padding: 0;
overflow-y: auto;
overflow-x: hidden;
}
#navbar li {
color: #4d4e53;
border-top: 1px solid;
list-style: none;
position: relative;
width: 100%;
}
#navbar a {
display: block;
padding: 10px 30px;
color: #4d4e53;
text-decoration: none;
cursor: pointer;
}
#main-doc {
position: absolute;
margin-left: 310px;
padding: 20px;
margin-bottom: 110px;
}
section article {
color: #4d4e53;
margin: 15px;
font-size: 0.96em;
}
section li {
margin: 15px 0px 0px 20px;
}
code {
display: block;
text-align: left;
white-space: pre-line;
position: relative;
word-break: normal;
word-wrap: normal;
line-height: 2;
background-color: #f7f7f7;
padding: 15px;
margin: 10px;
border-radius: 5px;
}
@media only screen and (max-width: 815px) {
/* For mobile phones: */
#navbar ul {
border: 1px solid;
height: 207px;
}
#navbar {
background-color: white;
position: fixed;
top: 0;
padding: 0;
margin: 0;
width: 100%;
max-height: 275px;
border: none;
z-index: 1;
border-bottom: 2px solid;
}
#main-doc {
position: relative;
margin-left: 0px;
margin-top: 270px;
}
}
@media only screen and (max-width: 400px) {
#main-doc {
margin-left: -10px;
}
code {
margin-left: -20px;
width: 100%;
padding: 15px;
padding-left: 10px;
padding-right: 45px;
min-width: 233px;
}
}
</style>
<main id="main-doc">
<section class="main-section" id="Introduction">
<header>Introduction</header>
<article>
<p>
Java is a class-based, object-oriented programming language and was developed by <b>James Gosling</b> at
Sun Microsystems Inc in the year 1995. It is a simple programming language and it makes writing,
compiling, and debugging programming easy. It helps to create reusable code and modular programs.
It is used for:
<ul>
<li>Mobile applications.</li>
<li>Desktop applications.</li>
<li>Web applications.</li>
<li>Database connection.</li>
<li>Games.</li>
</ul>
</p>
</article>
</section>
<section class="main-section" id="Syntax">
<header>Syntax</header>
<article>
<p>
The process of Java programming can be simplified in three steps:
<li>Create the program by typing it into a text editor and saving it to a file HelloWorld.java.</li>
<li>Compile it by typing “javac HelloWorld.java” in the terminal window.</li>
<li>Execute (or run) it by typing “java HelloWorld” in the terminal window.</li>
<p>First "Hello World" in Java</p>
<code>System.out.println("Hello World!");</code>
</p>
<p>The Print() Method:</p>
<p>There is also a print() method, which is similar to println().
<br>The only difference is that it does not insert a new line at the end of the output:</br>
</p>
</article>
</section>
<section class="main-section" id="Comments">
<header>Comments</header>
<article>
<p>Comments can be used to explain Java code, and to make it more readable. It can also be used to prevent
execution when testing alternative code.
<br>There are two types of comments-
<br>1. Single line comment.
<br>2. Multiline comment.
</p>
</article>
</section>
<section class="main-section" id="Variables">
<header>Variables</header>
<article>
<p>
Variables are containers for storing data values. In Java, there are different types of variables, for
example:
<li>String- Stores text.</li>
<li>int- Stores integers.</li>
<li>float- Stores floating point number.</li>
<li>char- Stores single character.</li>
<li>boolean- Stores values with true and false.</li>
</p>
</article>
</section>
<section class="main-section" id="Data_Types">
<header>Data Types</header>
<article>
<p>
Data types are divided into two groups:
<br><b>Primitive data types</b> - includes byte, short, int, long, float, double, boolean and char
<br><b>Non-primitive data types</b> - such as String, Arrays and Classes
</p>
</article>
</section>
<section class="main-section" id="Type_Casting">
<header>Type Casting</header>
<article>
<p>Type casting is when you assign a value of one primitive data type to another type.
In Java, there are two types of casting:
<ul>
<li>Widening Casting (automatically) - converting a smaller type to a larger type size
byte -> short -> char -> int -> long -> float -> double</li>
<li>Narrowing Casting (manually) - converting a larger type to a smaller size type
double -> float -> long -> int -> char -> short -> byte</li>
</ul>
</p>
</article>
</section>
<section class="main-section" id="Operators">
<header>Operators</header>
<article>
<p>
Operators are used to perform operations on variables and values.
Java divides the operators into the following groups:
<ul>
<li>Arithmetic operators</li>
<li>Assignment operators</li>
<li>Comparison operators</li>
<li>Logical operators</li>
<li>Bitwise operators</li>
</ul>
</p>
</article>
</section>
<section class="main-section" id="If_else_Statement">
<header>If else statement</header>
<article>
<p>
If statement is used to specify a block of Java code to be executed if a condition is true.</p>
<code>if (condition) {
// block of code to be executed if the condition is true
}
</code>
<header>The else Statement</header>
<p>
Use the else statement to specify a block of code to be executed if the condition is false.
</p>
<code>if (condition) {
// block of code to be executed if the condition is true
} else {
// block of code to be executed if the condition is false
}
</code>
</article>
</section>
<section class="main-section" id="Switch">
<header>Switch</header>
<article>
<p>
Use the switch statement to select one of many code blocks to be executed.
</p>
<code>
switch(expression) {
case x:
// code block
break;
case y:
// code block
break;
default:
// code block
}
</code>
</article>
</section>
<section class="main-section" id="While_Loop">
<header>While Loop</header>
<article>
<p>
The while loop loops through a block of code as long as a specified condition is true:
</p>
<code>while (condition) {// code block to be executed}
</code>
</article>
</section>
<section class="main-section" id="For_Loop">
<header>For Loop</header>
<article>
<code>for (statement 1; statement 2; statement 3) {
// code block to be executed}
</code>
</article>
</section>
<section class="main-section" id="Break_Continue">
<header>Break Continue</header>
<article>
The break statement can also be used to jump out of a loop.
The continue statement breaks one iteration (in the loop), if a specified condition occurs, and continues
with the next iteration in the loop
</article>
<section class="main-section" id="Arrays">
<header>Arrays</header>
<article>
<p>
Arrays are used to store multiple values in a single variable, instead of declaring separate
variables for each value.
To declare an array, define the variable type with square brackets:
</p>
<code>String[] cars;</code>
</article>
</section>
<section class="main-section" id="OOP">
<header>OOP</header>
<article>
<p>
OOP stands for Object-Oriented Programming.
Object-oriented programming has several advantages over procedural programming:
<li>OOP is faster and easier to execute.</li>
<li>OOP provides a clear structure for the programs.</li>
<li>OOP makes it possible to create full reusable applications with less code and shorter
development time.</li>
</p>
</article>
</section>
<section class="main-section" id="Classes">
<header>Classes</header>
<article>
<p>
Java is an object-oriented programming language.
A Class is like an object constructor, or a "blueprint" for creating objects.</p>
<b>Create a Class: </b>To create a class, use the keyword class:
<code>
public class Main {
int x = 5;
}
</code>
</article>
</section>
<section class="main-section" id="Constructors">
<header>Constructors</header>
<article>
<p>
A constructor in Java is a special method that is used to initialize objects.
The constructor is called when an object of a class is created.
It can be used to set initial values for object attributes:
</p>
<code>
class v {
public:
v(v);
};
</code>
</article>
</section>
<section class="main-section" id="Encapsulation">
<header>Encapsulation</header>
<article>The meaning of Encapsulation, is to make sure that "sensitive" data is hidden from users.
<p>
<ul>
<li>declare class variables/attributes as private.</li>
<li>provide public get and set methods to access and update the value of a private variable.</li>
</ul>
</p>
<code>
public class Person {
private String name; // private = restricted access
// Getter
public String getName() {
return name;
}
// Setter
public void setName(String newName) {
this.name = newName;
}
}
</code>
</article>
</section>
<section class="main-section" id="Inheritance">
<header>Inheritance</header>
<article>
<p>
Inheritance in Java is a mechanism in which one object acquires all the properties and behaviors of
a parent object
</p>
<code>
class Subclass-name extends Superclass-name
{
//methods and fields
}
</code>
</article>
</section>
<section class="main-section" id="Polymorphism">
<header>Polymorphism</header>
<article>
<p>
Polymorphism means "many forms", and it occurs when we have many classes that are related to each
other by inheritance.
</p>
</article>
</section>
<section class="main-section" id="Abstraction">
<header>Abstraction</header>
<article>
<p>
Data abstraction is the process of hiding certain details and showing only essential information to
the user.</p>
<code>
abstract class Animal {
public abstract void animalSound();
public void sleep() {
System.out.println("Zzz");
}
}
</code>
</article>
</section>
<section class="main-section" id="Reference">
<header>Reference</header>
<article>
<ul>
<li>
All the documentation in this page is taken from
<a href="https://www.w3schools.com/java/" target="_blank">W3 School</a>
</li>
</ul>
</article>
</section>
</main>