• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Functional Verification
  3. class casting

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 65
  • Views 12864
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

class casting

arjuny
arjuny over 14 years ago

Hi,

In SV LRM in the section "class casting" the following statement is given.

LRM statement: "It is always legal to assign a subclass variable to a variable of a class higher in the inheritance tree. It is never legal to directly assign a superclass variable to a variable of one of its subclasses. However, it is legal to assign a superclass handle to a subclass variable if the superclass handle refers to an object of the given subclass."

Can any body please give examples for the above statements.

Thanks, Arjun.

  • Cancel
Parents
  • jadec
    jadec over 14 years ago
    class A; endclass class B extends A; endclass class C extends A; endclass B b_obj = new(); A a_obj; a_obj = b_obj; // legal B is also a type A b_obj = a_obj; // illegal could be B type but could also be A or C types $cast( b_obj, a_obj ); // sets b_obj iff a_obj points to a B type object
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • jadec
    jadec over 14 years ago
    class A; endclass class B extends A; endclass class C extends A; endclass B b_obj = new(); A a_obj; a_obj = b_obj; // legal B is also a type A b_obj = a_obj; // illegal could be B type but could also be A or C types $cast( b_obj, a_obj ); // sets b_obj iff a_obj points to a B type object
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information