All language subtitles for 011 abstract class_en

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian Download
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,960 --> 00:00:02,790 A class can be abstract. 2 00:00:05,090 --> 00:00:08,390 You can create an object of a concrete class. 3 00:00:10,710 --> 00:00:13,800 You cannot create an object of an abstract class. 4 00:00:16,410 --> 00:00:19,410 In this lesson, you will label your parent class abstract. 5 00:00:22,260 --> 00:00:27,090 Now, the main problem is you shouldn't be allowed to create an object of the product class. 6 00:00:31,800 --> 00:00:37,500 Right now, product is a concrete class, which means we can create an object of the product class. 7 00:00:37,970 --> 00:00:40,410 I could write something like product product. 8 00:00:42,410 --> 00:00:44,810 Is equal to a new object of the product class. 9 00:00:46,860 --> 00:00:49,230 That is, let's say, for 99 blue. 10 00:00:50,620 --> 00:00:52,600 And I don't know, just put Java for the brand. 11 00:00:56,300 --> 00:00:57,140 Now, here's the issue. 12 00:00:59,730 --> 00:01:04,200 The requirements state that your clothing store sells shirt and pants. 13 00:01:06,500 --> 00:01:08,990 So what's product what are we selling here? 14 00:01:09,020 --> 00:01:10,610 Is it a shirt or is it pants? 15 00:01:10,640 --> 00:01:11,440 We don't know. 16 00:01:11,960 --> 00:01:16,700 That's why we need to forbid the color from creating an object of the product class. 17 00:01:18,120 --> 00:01:19,050 How do we do that? 18 00:01:19,320 --> 00:01:26,940 You make the class abstract, you cannot create an object of an abstract class, make a class abstract 19 00:01:26,940 --> 00:01:29,130 if its only purpose is inheritance. 20 00:01:31,430 --> 00:01:33,800 So we're going to make the product class abstract. 21 00:01:41,150 --> 00:01:41,800 And that's it. 22 00:01:43,670 --> 00:01:46,940 And now the color isn't allowed to create an object of it anymore. 23 00:01:47,120 --> 00:01:51,530 The only purpose of the product class is to provide inheritance for pants and shirt. 24 00:01:54,800 --> 00:01:57,500 You cannot create an object of an abstract class. 25 00:01:59,750 --> 00:02:03,740 Make a class abstract if its only purpose is providing inheritance. 2244

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.