Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
protected
- Page 1
Re: How secure is Github?
Programming
Software Development
4 Weeks Ago
by Salem
TBH, if it's "just me", then password
protected
tarballs of your `.git` directory, uploaded to one of the …
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Reverend Jim
… the web. They feed garbage to bots that access the
protected
sites. AI that returns bogus results on the ppther hand…
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
… the web. They feed garbage to bots that access the
protected
sites. The technique you're referring to is called spoofing…
Re: protected mode programming guide
Programming
Software Development
17 Years Ago
by Ancient Dragon
Protected
mode does not have access to real mode addresses. You …
protected data members = bad design?
Programming
Software Development
15 Years Ago
by kevintse
…private[/B][/COLOR] . In particular, declaring data members
protected
is usually a design error. Placing significant amounts of … use leaves that data open to corruption. Worse,
protected
data, like public data, cannot easily be restructured …no good way of finding every use. Thus,
protected
data becomes a software maintenance problem." Now I…
Protected access modifier in Java
Programming
Software Development
14 Years Ago
by pratz
… am not wrong then the method with
protected
access modifier can be accessed by the …DisplayName1 [CODE]package p1; public class ClassTest1 {
protected
void display1() { System.out.println("This is…p2; import p1.*; public class ClassTest2 extends ClassTest1 {
protected
void display2() { System.out.println("This is…
Re: protected data members = bad design?
Programming
Software Development
15 Years Ago
by MrSpigot
…Stroustrup states that "In particular, declaring data members
protected
is usually a design error.". [/QUOTE] I …number of derived classes in your application which use
protected
members in the base class. If you're …and white. Stroustrup does say "...declaring data members
protected
is [B][COLOR="Red"]usually[/COLOR][/B…
protected mode switch
Programming
Software Development
15 Years Ago
by xixpsychoxix
…switching_msg db "Currently placing processor in 32-bit
Protected
mode...",0 done_msg db "Done with placing… processor in 32-bit
Protected
mode. I can't believe I finally made it… a valid code segment ! 00107450657i[CPU0 ] CPU is in
protected
mode (active) 00107450657i[CPU0 ] CS.d_b = 16 bit 00107450657i…
Re: protected data members = bad design?
Programming
Software Development
15 Years Ago
by jwenting
… APIs.[/QUOTE] Assume ALL API specifications to be public, period.
Protected
(and even public) data members have their place, but that… directly, the only use is by derived classes. Giving those
protected
data members yields the same result as providing those data…
Re: protected mode switch
Programming
Software Development
15 Years Ago
by mathematician
…, until after he has switched into
protected
mode. One of the great joys of writing
protected
mode operating systems is that, once… in
protected
mode, you can no longer use…
Re: protected data members = bad design?
Programming
Software Development
15 Years Ago
by kevintse
Yap, I can do that, but it seems kinda awkward that the Image class can use the Bitmap structure directly while the ImageSection class can not. I just have no idea why Bjarne Stroustrup states that "In particular, declaring data members
protected
is usually a design error.". Then what is the best solution to this kind of design problem?
Re: Protected access modifier in Java
Programming
Software Development
14 Years Ago
by pratz
… ClassTest1 with method DisplayName1 [CODE]package p1; public class ClassTest1 {
protected
void display1() { System.out.println("This is ClassTest1"…. [CODE]package p2; import p1.*; public class ClassTest2 extends ClassTest1 {
protected
void display2() { System.out.println("This is ClassTest2"…
Re: Protected access modifier in Java
Programming
Software Development
14 Years Ago
by pratz
…, the program runs and if I declare the method as
protected
, then I do not have to create an object and…
Re: protected mode switch
Programming
Software Development
15 Years Ago
by mathematician
… happen when you execute the jump following the switch into
protected
mode. That makes me wonder whether the org 0 at…
protected default constructor
Programming
Software Development
16 Years Ago
by shobhit saxena
hello all, can somebody tell me what's the use of
protected
default constructor &
protected
copy constructor in c++.
Re: protected mode programming guide
Programming
Software Development
15 Years Ago
by SamY
[QUOTE=sgk26p10p07;467693]Anyone to help with
protected
mode programming,like help me create a a data descriptor pointing to 0b800h when i try to write to RAM it rebbots[/QUOTE] yes that is because you havent set up
protected
mode properly, it resets on triple fault. give me upto tomorrow ill give you a good working
protected
mode...
protected inheritance and reinterpret_cast
Programming
Software Development
14 Years Ago
by chamika.deshan
Hello Is this safe? In a API I am using have a
protected
inheritance of a class [CODE] class B { public : method(); } class C :
protected
Class B { }[/CODE] I need to access those pulbic methods in Class B So is this ok and safe? [CODE]C* x = new C(); B* prt = reinterpret_cast<B*>(x); prt->method(); [/CODE]
Protected or Public? (Servlet specific)
Programming
Software Development
13 Years Ago
by skiabox
I have seen in many servlets that doPost and doGet are declared public or
protected
. What is the purpose of declaring a doPost or doGet as
protected
? Thank you.
Re: protected default constructor
Programming
Software Development
16 Years Ago
by Ancient Dragon
read [URL="http://www.velocityreviews.com/forums/t285784-constructor-
protected
.html"]this thread[/URL]
Re: protected members
Programming
Software Development
15 Years Ago
by jonsca
… type specified, the default is private. Therefore your public and
protected
members become private and your private members are not accessible… to your derived class. Your
protected
variable from A is then becoming private in B, which…
Re: protected members
Programming
Software Development
15 Years Ago
by Fbody
… public inheritance?[/QUOTE] C++ has 3 levels of inheritance (private,
protected
, and public). Although they are partially-related, these do not… class' members the same as in the base class. Using
protected
or private inheritance is more restrictive and less like "…
Re: protected mode programming guide
Programming
Software Development
15 Years Ago
by NotNull
… linear address The only difference when accessing physical addresses in
protected
mode from real-mode, is that in real mode a… address is represented by a segment:offset pair. whereas in
protected
mode a single 32-bit value can be used.
Re: Protected or Public? (Servlet specific)
Programming
Software Development
13 Years Ago
by stultuske
it basically decides who can access the method. public -> everyone
protected
-> package level and subclasses
protected mode programming guide
Programming
Software Development
17 Years Ago
by sgk26p10p07
Anyone to help with
protected
mode programming,like help me create a a data descriptor pointing to 0b800h when i try to write to RAM it rebbots
Protected Memory error, WebBrowser Control.
Programming
Software Development
16 Years Ago
by Webbsta
… i get this error: "Attempted to read or write
protected
memory. This is often an indication that other memory is…
protected static members of a Class
Programming
Software Development
16 Years Ago
by andreb
… code compiles perfectly but does not link. [CODE]class GameEngine {
protected
: // Member Variables static GameEngine* m_pGameEngine; HINSTANCE m_hInstance; HWND m_hWindow; TCHAR…
protected inheritance
Programming
Software Development
15 Years Ago
by babbu
hello every1. i want the text box of form1 to be accessible in form 2 without declaring it as public. ive declared it as
protected
. but how do i inherit it in form 2.
protected members
Programming
Software Development
15 Years Ago
by mmasny
If we have three classes A,B,C declared as follows: [code=C++] class A{
protected
: int x; }; class B : A{ //... }; class C : B{ //... }; [/code] does class C see its member x? It seems to me that it doesn't according to what the compiler says to me...
Re: protected members
Programming
Software Development
15 Years Ago
by jonsca
Flip back (or forward) a chapter or check out [URL="http://www.learncpp.com/cpp-tutorial/115-inheritance-and-access-specifiers/"]this[/URL]. Essentially using one kind or another determines the access (public, private, or
protected
) of the data members in the derived class based on their respective access types in the parent class.
Re: protected mode programming guide
Programming
Software Development
15 Years Ago
by NotNull
Do you want a
protected
mode programming guide? [url]http://prodebug.sourceforge.net/pmtut.html[/url]
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC