Say I have two classes:
and
is it standard practice to keep the two classes in the same file or to put them in separate files? I'm kinda new to OOP programming practices.
Code:
class A
{
// stuff
}
and
Code:
class B extends A
{
// other stuff
}
is it standard practice to keep the two classes in the same file or to put them in separate files? I'm kinda new to OOP programming practices.