The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
46 views

How to shadow python builtin pwd module

There is some python code that works under Linux. It uses the pwd module in a way like that: import pwd ... def func(): user=pwd.getpwnam(user)[2] Now we have a specific need to cover ...
5
votes
2answers
114 views

Interesting case of shadowing parameter C++ (parameter not shadowed in an if block) [closed]

I surprising discovered today that the following code is completely valid (gcc 4.4.5): int get_int(const int& i) { if(i == 0) { int i = 1; return i; } return i; ...
0
votes
1answer
43 views

ActionPerformed do not work

Have a little problem with this code. The actionPerformed method don't work. Buttons knappStartSalg and knappStartKunde, don't react when I push the buttons. All that should have been imported are ...
2
votes
1answer
69 views

Process crashes on second message in Erlang

I have a simple car process implemented in Erlang: -module(cars). -compile(export_all). -record(state, {count=1}). make_car() -> spawn_link(fun() -> car_proc(#state{}) end). car_proc(S) ...
2
votes
1answer
132 views

Type A is not equal to type A in Haskell (ghci interpreter)?

GHCi is telling me that type A is not type A. Why? >>> data A = A >>> let x = A >>> let id A = A >>> >>> data A = A >>> let x' = A >>> ...
0
votes
1answer
24 views

Java inherited field shadowing and the JVM?

Is the mechanism how fields are shadowed/hidden by inheritance and later resolved part of the JVM spec? I know it is part of the Java spec, and can be found in many blog posts and SO questions. ...
2
votes
0answers
58 views

Ambiguity in inheritance but not with shadowing

Let's assume we have a extensible class Component which might hold features most of my classes should have access to. Right now it is about exposing a pointer type in each class. With new alias ...
4
votes
1answer
31 views

Member shadowing in subclass

Consider the following example outline: interface IBar{ /*...*/ } class SomeBar implements IBar { /*...*/ } abstract class AbstractFoo { IBar context; /* Some default implementations of ...
4
votes
5answers
177 views

Variable and Method shadowing in Java

Basically I would like to know why a static method cannot be shadowed by an instance method, (I know why, it will lead to ambiguity in certain circumstances), whereas a static variable can be shadowed ...
-1
votes
3answers
64 views

Shadowing variables in methods

I was reading the certification book of Java 6. And there was an example about "Shadowing variables": package scjp; class Class1 { int number = 28; } public class Example { Class1 myClass ...
2
votes
1answer
56 views

How to prevent shadowing and promote given method?

In C++ it is done with "using", and in C#? public class foo { public void print(string s) {...} } public class bar : foo { // shadowing public void print(object o) {...} } How to promote ...
0
votes
1answer
408 views

Overlay div on td one row above hovered td

So essentially I have a table that his comprised of 3 columns and n number of rows. What i'm trying to do is this. When you hover over a td all the td's above that will be "shaded" I tried doing this ...
1
vote
2answers
181 views

Java Variables Shadowed Methods overridden concept

I am struggling to understand Variables Shadowed Methods Overriden Concept of inheritance with Java. Case 1: class Car{ public int gearRatio = 8; public String accelerate() { return ...
5
votes
2answers
111 views

What are the rules for resolving symbols as macros vs. function parameters?

I was surprised to find that alpha-conversion is not safe in Clojure: Clojure> ((fn [o] (o 3 2)) +) 5 Clojure> ((fn [or] (or 3 2)) +) 3 Clojure> ((fn [def] (def 3 2)) +) ...
3
votes
2answers
801 views

Visual Studio private accessors and checking in code

I've generated unit tests on a private method using Visual Studio's own "Create Unit Tests..." option. Great, it works, but if I try to check my code in now I break the build because VS has created ...
4
votes
3answers
59 views

Variable shadowing and testing for existence before assignment in javascript

In the following code snippet I declare a global variable and then check for its presence inside a function. <script> x = 5; $(function() { var x = x || 3; console.log(x); // prints 3 }); ...
1
vote
1answer
216 views

Create a closure in Erlang: why are variables not bound?

I have a piece of code that goes like this: Fi_F = fun (F, I, Xs) -> fun ( X ) -> F( x_to_list(X, Xs, I) ) end end, I just need to turn a function of ...
1
vote
1answer
20 views

Strange behaviour whith shadowing

Although shadowing should never be used (or just to obfuscate) because it's confusing, I wanted to completely understand it. And I got this strange thing : alert(parseInt('123'));//Here, I expected ...
3
votes
5answers
942 views

What is the difference between method hiding and shadowing in C#?

What is the difference between method hiding and shadowing in C#? Are they same or different? Can we call them as polymorphism (compile time or run time)?
0
votes
1answer
453 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, ...
3
votes
6answers
1k 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
145 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 ...
0
votes
4answers
463 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 ...
10
votes
1answer
116 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 ...
6
votes
2answers
391 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 ...
0
votes
1answer
235 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; ...
1
vote
2answers
273 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
121 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 ...
0
votes
3answers
161 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 + ...
7
votes
4answers
777 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): ...
2
votes
6answers
742 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 ...
0
votes
1answer
120 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. ...
6
votes
3answers
708 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: ...
0
votes
1answer
45 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 ...
2
votes
3answers
347 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 ...
1
vote
4answers
812 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 ...
3
votes
2answers
2k 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 ...
2
votes
2answers
285 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 ...
11
votes
2answers
777 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; ...
3
votes
3answers
194 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 ...
12
votes
9answers
734 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 ...
0
votes
1answer
190 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 ...
7
votes
6answers
695 views

Why does shadowed variable evaluate to undefined when defined in outside scope?

Consider the following piece of code: <html><head></head> <body> <script type="text/javascript"> var outside_scope = "outside scope"; function f1() ...
0
votes
5answers
4k 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 ...
6
votes
9answers
15k views

What is Shadowing?

In C# what does the term shadowing mean? I have read this link but didn't fully understand it.