Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Lifting a method with 'using' doesn't work in Studio 12.6

kovalAug 6 2017 — edited Aug 7 2017

Studio 12.6 gives errors when 'using' directive is used to make a method from private-inherited class accessible as public from derived class:

class A {

public:

    operator bool() const;

};

class B: private A {

public:

    using A::operator bool;

};

bool use(B b)

{

    return !!b;

}

!!b;

Error:

line 15: Error: A::operator bool() const is not accessible from use(B).

1 Error(s) detected.

Studio 12.5 compiled this example fine

This post has been answered by Steve.Clamage-Oracle on Aug 7 2017
Jump to Answer

Comments

rickepm

does this cover Jython?

Bob Rhubart-Oracle

does this cover Jython?

Are you asking about the sample chapter or the book? @"TonyScalese" wrote the chapter, and most of the book's authors participate in this community. So you can put the question to them directly.

TonyScalese

The chapter discusses the Software Development Lifecycle and specifically how LCM can be used.  The book discusses Jython but is not an in depth exploration of it as that is a topic to which an entire book (or more) should be dedicated.

rickepm

The chapter discusses the Software Development Lifecycle and specifically how LCM can be used.  The book discusses Jython but is not an in depth exploration of it as that is a topic to which an entire book (or more) should be dedicated.

is this a hands-on kind of book?

Sudhakar S

The chapter discusses the Software Development Lifecycle and specifically how LCM can be used.  The book discusses Jython but is not an in depth exploration of it as that is a topic to which an entire book (or more) should be dedicated.

Dear Tony,

I am planning to purchase this book to extend my knowledge on FDMEE and I am looking for the PDF version.

When i checked in Amazon it is in paperback format. If it is in ebook format it will be more good for me.

Can you please let me know if it available So that i can purchase.

Thanks,

Sudhakar S

1 - 5
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 4 2017
Added on Aug 6 2017
1 comment
182 views