Java Bangla Tutorials 109 : static variable (part-3)

preview_player
Показать описание
➡️ In this video, I will discuss the static variable.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) The static variable
⌨️ (09:18) Outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS Office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

Static bisoita ato valovabe mathai dhukse asa kori ar vulbo na kokhono. Thank you Anisul vai. Allah apnake uttom protidan dik

naimeahmed
Автор

I understand your teaching clearly. Now I want a series of SQL database with Java.

rhittikpaul
Автор

I am from India and I watch every tutorial .very nice tutorial every point is clear thanks a lot sir

souravsingha
Автор

Aponar bojhanor technique osadharon. Javar sathe SQL (database) niye akta series dile khub upokrito hobo. Thank you

rhittikpaul
Автор

what an example to present static variable!!! My backgroud is accounting but I understand clearly about static veriable. Thanks Sir
Sir I want to learn Java. Pls help to guide me sothat I can have it.

MonirulIslam-chis
Автор

sir apanr videor sound prbta thik hoile aro onk valo hoito

toufiqelahi
Автор

hi, I am very glad to have java tutorial in Bangla, and thanks a lot for your afford I following all video in Java, very much clear easy understandable, i am proud that you made for us .
but video from java (89-91) sometimes voice get super low, can't hear anything, please look at those error,

again thanks a lot from bottom of my heart make this video.

kazikarim
Автор

thank you so much ..you are simply awesome

anikalima
Автор

it was very helpful. I am so glad I took a chance to see this lesson. please keep making more videos like this.

aliwakillodi
Автор

Via apnar video amke onek kichu sikeche . er jonn apnak osonkho dhhono bad.

sougatabaidya
Автор

package oop;


public class Student3 {
static int count = 0;

Student3(){
count++ ;
}

void display(){
System.out.println("Total Students = "+count);
}
}


package oop;


public class Test5 {
public static void main(String[] args) {
Student3 st1 = new Student3();
st1.display();
Student3 st2 = new Student3();
st2.display();
Student3 st3 = new Student3();
st3.display();
}

}

tomabanik
Автор

package staticKeywrd;

public class Student {

static int count = 0;

Student(){
count++;
}

void display(){
System.out.println("total number is : "+count);
}

}

package staticKeywrd;

public class Test {

public static void main(String[] args) {
Student s1 = new Student();
Student s2 = new Student();
Student s3 = new Student();

s3.display();
}

}

srishteebhattacharjee
Автор

package staticv;

public class Student {

static int count = 0;

Student() {
count++;
}

void total() {
System.out.println(" student is : " + count);
}
}
package staticv;

public class test {

public static void main(String[] args) {
Student s1 = new Student();
s1.total();
Student s2 = new Student();
s2.total();
Student s3 = new Student();
s3.total();
Student s4 = new Student();
s4.total();
}
}

nishatsultana
Автор

package Static_Variable;


public class Student {
static int count = 0;
Student(){
count++;
}
void totalStudent(){
System.out.println("Total Student = "+count);
System.out.println("\n");
}

}


package Static_Variable;


public class Test {
public static void main(String[] args) {
Student s1 = new Student();
s1.totalStudent();

Student s2 = new Student();
s2.totalStudent();

Student s3 = new Student();
s3.totalStudent();

}

}

sitanath
Автор

if i want to only print even objects then what shoud do

jayedzakir
Автор

ekhane Static variable er jonno class er object keno create kora holo jekhane agei bola hoyeche static variable er jonno object create kora jabe na ???

nusratoishy
Автор

package student;

public class Student {

static int count = 0;

Student() {
count++;
}

void display() {
System.out.println("Total Number : " + count);

}

}
package student;

public class StudentNumber {

public static void main(String[] args) {

Student s1 = new Student();
s1.display();

Student s2 = new Student();
s2.display();

Student s3 = new Student();
s3.display();

}
}

elorabarua
Автор

ekbar e show korai "total student", 3 bar knw show korai na knw sir?

proggapatowary
Автор

//L-109
public class T
{
static int count=0;
//create constructor
T()
{
count++;
}
//create object
void print()
{
System.out.println("Total students:"+count);
}
public static void main(String[] args)
{
T s1=new T();
s1.print();
T s2=new T();
s2.print();
T s3=new T();
s3.print();
T s4=new T();
s4.print();
T s5=new T();
s5.print();
}
}

Tamim_Mahmud
Автор

count++ use korle bai s1kn 1 barbe?
amra ++count use korini

_sadekunnursikdar_A
welcome to shbcf.ru