Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
9answers
524 views

Is “this” shadowing a good idea?

The case of shadowing class variables is common in in Java. Eclipse will happily generate this code public class TestClass { private int value; private String test; public TestClass(int ...
10
votes
1answer
106 views

Force accessing of a def

Considering object A { def m(i: Int) = i val m = (i: Int) => i * 2 } one gets scala> A.m(2) <console>: error: ambiguous reference to overloaded definition, both value m in object A ...
8
votes
2answers
421 views

In C++, what is the scope resolution (“order of precedence”) for shadowed variable names?

In C++, what is the scope resolution ("order of precedence") for shadowed variable names? I can't seem to find a concise answer online. For example: #include <iostream> int shadowed = 1; ...
6
votes
2answers
116 views

Shadowing Inherited Generic Interface Members in .NET: good, bad or ugly?

I know that shadowing members in class implementations can lead to situations where the "wrong" member can get called depending on how I have cast my instances, but with interfaces I don't see that ...
6
votes
4answers
315 views

How do I find where a variable is defined at runtime?

I've been using jQuery and YUI side-by-side with no issues until recently. Occasionally, inside of a callback for, say, a YUI button, $ will be shadowed by some other function (click for big version): ...
6
votes
3answers
243 views

How to create fast and easy scene-independent shadows w/o shaders in OpenGL

Let i have some mesh (for ex. sphere) in the center of room, full of cubes and one light source. How can i make fast and easy shadow-casting in OpenGL, using "standard" (fixed) functions only? Note: ...
3
votes
6answers
156 views

In Java, if a child class shadows a static parent variable with an instance child variable, which variable will inherited methods use?

This is probably a bad thing to do, as discussed in Can parent and child class in Java have same instance variable?. (What if the parent variable name is changed? Then it will not be shadowed ...
3
votes
2answers
99 views

Scala Ambiguous Variable Name Within A Method

I've seen some questions regarding Scala and variable scoping (such as Scala variable scoping question) However, I'm having trouble getting my particular use-case to work. Let's say I have a trait ...
3
votes
2answers
973 views

Need help in adding a drop shadow to an image in a uiview in iOS4?

I am trying to create a drop shadow for an image. I also have an animation between views and this is the backdrop. However, when I use the following code, the image is not drawn. Anyone have any ...
3
votes
3answers
126 views

How new keyword works in derive class

I am having some confusion with the new keyword,things work fine when I am using virtual and override , but a bit different with new(I think I am missing something) class A { public virtual void ...
3
votes
8answers
4k views

What is Shadowing?

In C# what does the term shadowing mean? I have read this link but didn't fully understand it.
2
votes
6answers
275 views

question about variable scope and shadowing in java

I got this situation i cant understand about shadowing. For example the following code class Foo { int a = 5; void goFoo(int a) { // No problem naming parameter as same as instance ...
2
votes
3answers
221 views

Strongly-typed generic method invokes its argument's base class method, instead of a shadowed method in T?

Consider a MyForm class that contains a shadowed implementation of Show(). It also contains a CreateForm() method, which accepts an instance of the form and calls the shadowed sub: Public Class ...
2
votes
2answers
136 views

The concept of shadowing

Given the following code: public class A { static final long tooth = 1L; static long tooth(long tooth){ System.out.println(++tooth); return ++tooth; } public static void main(String ...
1
vote
2answers
144 views

Shadowing functions of C stdlib/stdio

I am writing a game and for now i was able to implement a filesystem via sqlite with a class and its methods. To make life more easy i have planned to write some functions like ...
1
vote
0answers
81 views

Prevent Shadowed Property From Getting Serialized

This is kind of piggybacking off of this question: ASP.NET: Shadowing Issues I've discovered that the issue isn't actually that the property isn't getting serialized, it is, but that BOTH the ...
1
vote
4answers
418 views

object oriented programming basics: inheritance & shadowing (Python)

Level: Beginner I'm doing my first steps in Object Oriented programming. The code is aimed at showing how methods are passed up the chain. So when i call UG.say(person, 'but i like') the method say ...
0
votes
1answer
54 views

Citrix session remote shadowing

This is Citrix technology based question. I need to develop windows app which should have functionality of remote session shadowing. We have server on which XenApp server and XenApp SDK is installed, ...
0
votes
4answers
183 views

Shadowing in C#

I'm using C#. I have two classes A and B. B inherits from A. They both have a Foo() method (which is virtual in A). Now, if I have A b = new B(); int x = b.Foo(); then Foo() from A is called. But ...
0
votes
1answer
111 views

question about hiding/shadowing member-variables in Java

I want to understand how hiding works in Java. So lets assume you have following code public class A{ protected SomeClass member; public A(SomeClass member){ this.member = member; ...
0
votes
3answers
82 views

ASP.NET: Shadowing Issues

I have two classes in two separate libraries (one VB, one C#): Public Class Item ... Public Overridable ReadOnly Property TotalPrice() As String Get Return FormatCurrency(Price + ...
0
votes
1answer
64 views

Shadowed method is not called

I have a class which i realized will not always correctly instantiate and as a quick fix, i figured i'd subclass it and shadow a few methods so that the program can continue to run without exploding. ...
0
votes
1answer
33 views

Getting SVN to shadow commits to a CVS repository

Is there a way to monitor commits to a CVS repository on a daily basis say, and for those changes to be replicated in a local SVN repository. Ideally maintaining commit comments. A little perl ditty ...
0
votes
1answer
124 views

Field Name Best Practices (Shadowing or Compund Names)

As the red block above (warning that this is a subjective question and may be closed) there may not be a stone etched law on this, but I don't see why that would warrant closing a question. ...Rant ...
0
votes
5answers
2k views

What is variable shadowing used for in a Java class?

I'm reading my Deitel, Java How to Program book and came across the term shadowing. If shadowing is allowed, what situation or what purpose is there for it in a Java class? Example: public class Foo ...