|
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
K. Tsang CEng MBCS PMP PMI-ACP OCMJEA OCPJP
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
Yucca Nel wrote:My file descriptor did not give me an offset and I need to read all data schema to get to where the records start. By hardcoding my offset I could be taking a guess, but a method that reads all data and then varifies all the information like my offset provide easier to understand code for junior programmers.
K. Tsang CEng MBCS PMP PMI-ACP OCMJEA OCPJP
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
K. Tsang CEng MBCS PMP PMI-ACP OCMJEA OCPJP
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
The only problem with not extending Sun's interface and having your Data class implement the interfaces separately, like in:
public class Data implements YourInterface, SunsInterface
instead of
public class Data implements YourInterface
is that you won't be able to do this:
YourInterface data = new Data();
data.methodFromSunsInterface();
Bottom line: you can create your interface and extend Sun's interface without any problem. I did it and didn't fail!
K. Tsang CEng MBCS PMP PMI-ACP OCMJEA OCPJP
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
K. Tsang CEng MBCS PMP PMI-ACP OCMJEA OCPJP
SCJP 6.0, SCJD (400/400), SCBCD for JEE 5, SCWCD 1.4 I do videos for development at
http://www.youtube.com/user/thejartender?feature=mhee
I am probably the only developer ever to have had an orange sized brain tumor in my brain while learning development!!
Yucca Nel wrote:
If MyInterface has all the methods of SunInterface declared exactly the same and if data...
Then all it means is that with the one interface you can instantiate a different type of Data? This way Data has extra operations and still complies with MUST
You may have just won ten million dollars! Or, maybe a tiny ad.
Smokeless wood heat with a rocket mass heater
https://woodheat.net
|