Click here to Skip to main content
15,887,746 members

Nemanja Trifunovic - Professional Profile



Summary

LinkedIn      Blog RSS
21,629
Author
7,688
Authority
38,583
Debator
30
Editor
102
Enquirer
12,739
Organiser
9,705
Participant
Born in Kragujevac, Serbia. Now lives in Boston area with his wife and daughters.

Wrote his first program at the age of 13 on a Sinclair Spectrum, became a professional software developer after he graduated.

Very passionate about programming and software development in general.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralRe: How to use C++/CLI? Pin
Nick Parker29-Jul-04 17:29
protectorNick Parker29-Jul-04 17:29 
GeneralMy first hands on experience with generics Pin
Nemanja Trifunovic17-Jul-04 8:41
Nemanja Trifunovic17-Jul-04 8:41 
GeneralBad habits of "old-style" programming Pin
Nemanja Trifunovic13-Jul-04 3:05
Nemanja Trifunovic13-Jul-04 3:05 
GeneralC++/CLI - ref objects on native heap Pin
Nemanja Trifunovic11-Jul-04 7:11
Nemanja Trifunovic11-Jul-04 7:11 
GeneralRe: C++/CLI - ref objects on native heap Pin
Brian Olej11-Jul-04 7:27
Brian Olej11-Jul-04 7:27 
GeneralRAII with C++/CLI Pin
Nemanja Trifunovic10-Jul-04 10:11
Nemanja Trifunovic10-Jul-04 10:11 
GeneralRe: RAII with C++/CLI Pin
Nemanja Trifunovic10-Jul-04 10:19
Nemanja Trifunovic10-Jul-04 10:19 
GeneralTrivial (and less trivial) properties Pin
Nemanja Trifunovic9-Jul-04 9:36
Nemanja Trifunovic9-Jul-04 9:36 
One of the new features of C++/CLI is trivial properties. Basicaly, the code:

class SomeClass
{
  public:
  property int State;
};


translates to:

class SomeClass
{
  public:
  property int State 
    {
    int get() const
       { return State_; }
    void set(int value)
       { State_ = value; }
    }
private:
  int State_;
};


Now, to be quite honest with you, I don't like properties. Not because I believe they hurt encapsulation like some people do[^]. No, properties per se don't hurt encapsulation any more than other member functions do. What I don't like about them is the syntax: they are really methods, but you call them as if they were public fields. Maybe it is because I work with linguists a lot these days, but I firmly believe that good functions' names are verbs ( DoSomething() ) and that good variables' names are nouns ( someValue ). In my mind object.SetSomething(value); is much better than object.Something = value; .

As for encapsulation, as I said - properties don't have to hurt it at all. Abstraction, yes - just as much as accessor functions hurt abstraction, but this is another story.

BTW, does anybody know why Java and C# even allow public fields?
GeneralRe: Trivial (and less trivial) properties Pin
Jörgen Sigvardsson11-Jul-04 10:12
Jörgen Sigvardsson11-Jul-04 10:12 
GeneralRe: Trivial (and less trivial) properties Pin
Nemanja Trifunovic11-Jul-04 12:01
Nemanja Trifunovic11-Jul-04 12:01 
GeneralRe: Trivial (and less trivial) properties Pin
Jörgen Sigvardsson11-Jul-04 12:04
Jörgen Sigvardsson11-Jul-04 12:04 
GeneralRe: Trivial (and less trivial) properties Pin
Dejan Gojsevic11-Jul-04 15:18
Dejan Gojsevic11-Jul-04 15:18 
GeneralRe: Trivial (and less trivial) properties Pin
Nemanja Trifunovic11-Jul-04 15:36
Nemanja Trifunovic11-Jul-04 15:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.