Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the '#' symbol mean in a UML class diagram?

Tags:

uml

I was reading Algorithms in a Nutshell (O'Reilly) and came across this symbol in a class diagram. My guess is that it means the member is protected, but I wanted to see if anyone knows for sure what it means.

like image 339
troyal Avatar asked Jan 06 '09 21:01

troyal


1 Answers

It indicates a protected member of a class or other data type.

- Indicates private

+ Indicates public

# Indicates protected

like image 113
Mike Hofer Avatar answered Sep 29 '22 08:09

Mike Hofer