What languages have properties that getters and setters can assign?
Java is not. (This is just a convention)
Delphi does. I believe C # does.
What other languages?
Edit: I should have given an example:
Delphi: (be careful, it has been a while, I could be wrong)
type
TSomething = class
fEmployeeNum: String;
property employeeNum: String read fEmployeeNum write setEmployeeNum;
end;
procedure TSomething.setEmployeeNum(var val: String);
begin
fEmployeeNum := val;
end;
+1
a source to share
7 replies