Slide 22
Slide 22 text
Side by Side with Java
22
Java (C#) Python
public class Employee
{
private String myEmployeeName;
private int myTaxDeductions = 1;
private String myMaritalStatus = "single";
public Employee(String EmployeName)
{
this(EmployeName, 1);
}
public Employee(String EmployeName, int taxDeductions)
{
this(EmployeName, taxDeductions, "single");
}
public Employee(String EmployeName,
int taxDeductions,
String maritalStatus)
{
this.myEmployeeName = EmployeName;
this.myTaxDeductions = taxDeductions;
this.myMaritalStatus = maritalStatus;
}
}
class Employee():
def __init__(self,
employeeName
, taxDeductions=1
, maritalStatus="single"
):
self.employeeName = employeeName
self.taxDeductions = taxDeductions
self.maritalStatus = maritalStatus