Tagged Questions
The modifier tag has no wiki summary.
13
votes
4answers
2k views
What does the “static” modifier after “import” mean?
like this:
import static com.showboy.Myclass;
public class Anotherclass{}
And what's the difference between "import static com.showboy.Myclass" and "import com.showboy.Myclass"?
9
votes
3answers
191 views
Use of Scala's private final modifier?
What can I use the private final modifier in Scala for?
Given the below code:
1| class A { def callFoo = foo; private final def foo = "bar of A" }
2| class B extends A { private final def foo = "bar ...
8
votes
2answers
579 views
Perl Regex 'e' (eval) modifier with s///
I'm having a little trouble comprehending this simple use of the /e regex modifier.
my $var = 'testing';
$_ = 'In this string we are $var the "e" modifier.';
s/(\$\w+)/$1/ee;
print;
Returns: "In ...
7
votes
3answers
161 views
How do you force Perl to re-compile a regex compiled with “/o” on demand?
Technical question:
Given a regex:
my $regEx = qr{whatever$myVar}oxi; # Notice /o for "compile-once"
What is the most effective way to force it to recompile on demand? (e.g. when I know from the ...
6
votes
5answers
193 views
Pros and cons of package private classes in Java?
I am learning Java recently, and I came across the notion of package-private classes, which is the default if we don't specify anything. But then I realized:
I seldom see the use of package-private ...
5
votes
5answers
298 views
How to use a variable as modifier in a substitution
Is there a way to use a variable as modifier in a substitution?
my $search = 'looking';
my $replace = '"find: $1 ="';
my $modifier = 'ee';
s/$search/$replace/$modifier;
I need to use an array of ...
5
votes
1answer
208 views
Set a project default for VB.NET projects so that the default Modifiers property for controls is Private
Is it possible to set a project default for VB.NET winforms projects so that the default Modifier for controls added to winforms is Private (not Friend)?
I know there's a "modifiers" property in the ...
5
votes
4answers
2k views
What is the point of “static new” modifier for a function?
Today, I found something in legacy code. It has "static new" for one function. It looks like this.
class Foo
{
public static void Do()
{
Console.WriteLine("Foo.Do");
}
}
class ...
4
votes
1answer
84 views
Where can I read more about D's class access modifiers?
I can't seem to find a good reference for the D programming language class access modifiers.
I know that public and private are pretty much guaranteed but i'm guessing there are more, i just can't ...
4
votes
3answers
114 views
How to add a modifier to a quoted regular (qr) expression
Is there an easy way to add regex modifiers such as 'i' to a quoted regular expression? For example:
$pat = qr/F(o+)B(a+)r/;
$newpat = $pat . 'i'; # This doesn't work
The only way I can think of is ...
4
votes
2answers
261 views
Smarty “capitalize” modifier… always capitalizes “L”? … and “P”?
Quite simply: I'm using Smarty and the |capitalize modifier. It works fine, but when I pass any word with l in it, it capitalizes it, even if it's not at the beginning of the word.
What why?
EDIT: ...
4
votes
3answers
511 views
How does extern work in C#?
Whenever I look deeply enough into reflector I bump into extern methods with no source. I read the msdn documentation at http://msdn.microsoft.com/en-us/library/e59b22c5(v=vs.80).aspx. What I got ...
3
votes
3answers
137 views
How can I chain together filename modifiers in a bash shell?
I understand the modifiers # ## % %%, but I can't figure out if its possible to chain them together as you can in tcsh.
Example in tcsh
set f = /foo/bar/myfile.0076.jpg
echo $f:r:e
--> 0076
echo ...
3
votes
2answers
283 views
x:FieldModifier is not valid for the language C#?
When I apply x:FieldModifier to my WPF control, eg:
<TextBox x:Name="textBox1" x:FieldModifier="Public"/>
visual studio (tried on 2008 and 2010) gives me the following error:
...
2
votes
1answer
48 views
php RegExp: how to use newline in expression?
For example it works:
{<div\s+class=\"article\"><h2(.*)</div>}s
If I do this way, I get nothing:
{<div\s+class=\"article\">
<h2(.*)
</div>}s
I suspect that I ...
2
votes
1answer
45 views
Using Perl/Moose, what happens to the value returned by modifiers?
Learning perl I just recently discovered the wonders of Moose!
I'm trying to wrap my head around modifiers -- or at least how the return values are handled... do they get stored someplace?
{package ...
2
votes
5answers
194 views
java access modifiers and overriding methods
Why does Java specify that the access specifier for an overriding method can allow more, but not less, access than the overridden method? For example, a protected instance method in the superclass can ...
2
votes
3answers
132 views
Objective-C Modifers for static?
How do I create a static variable in my Objective-C class? I'm familiar with using @private in my header files for private variables, but I am trying to create a static method which accesses a static ...
2
votes
3answers
151 views
Apply Smarty modifier on block output
I'm trying to apply a modifier (truncate, in my case) to the output of a block (a tr block, that is, a translation block). I don't have tr as a modifier because it's not convenient for HTML markup.
I ...
2
votes
1answer
305 views
Warning: preg_match() [function.preg-match]: Unknown modifier 'v'
I keep getting this error about 20 times in my wordpress blog about the same line of code. Here is the line of code that keeps getting the error.
if ( preg_match( '/' . $id_base . '-([0-9]+)$/', ...
2
votes
1answer
55 views
i modifier doesn't work with foreign languages?
My string is in foreign language, i use the following expression
$str = 'մի քանի Բառ ձեր մասին';
$word = 'բառ';
$cont = ...
2
votes
1answer
5k views
Why preg_replace throws me a “Unknown modifier” error?
I keep getting this error:
Warning: preg_match()
[function.preg-match]: Unknown
modifier 't' in
D:\xampp\htdocs\administrator\components\com_smms\functions\plugin.php
on line 235
on:
...
1
vote
5answers
62 views
modifiers for multiple objects in java
it is possible to do something like this in java?
static public final {
String A = "a...";
int B = 3;
boolean C = true;
}
thanks!
EDIT: sorry i made a mistake in my example.. I don't ...
1
vote
0answers
137 views
CGEventCreateScrollWheelEvent can't work as Zoom in/out as Control key is press
I can use Event Tap/CGEventCreateScrollWheelEvent to send scroll event to HID Tap.
But as I keep sending the scroll events and also pressing the control key at the same time,
the expected Zoom ...
1
vote
4answers
129 views
Warning: preg_match() [function.preg-match]: Unknown modifier '('
I have this HTML tags :
<div class="title">Copy me if you can</div>
so I wanna use preg_match to take just "Copy me if you can"
I'm using this preg pattern :
$preg = "<div ...
1
vote
3answers
87 views
1
vote
2answers
398 views
C#: Determine whether modifier key was pressed
I know how to obtain which modifier key was pressed in c# but I don't know how I can actually check if any modifier key was pressed. I need to check it in KeyUp event, is it possible any other way ...
1
vote
2answers
259 views
C# return non-modifiable list
I have a class which contains a List<Item> I have a getter on the class that returns this. Is there some thing I can do to ensure the user who calls cannot modify the returned List? (Since it's ...
1
vote
5answers
677 views
How to change modifier of a control to Static in Visual Studio
when i create a control by drag and drop VS automatically generate code like this:
public System.Windows.Forms.Label label1;
When i want to change modifier of that control to Static, i go to ...
1
vote
4answers
314 views
new modifier in C#
MSDN says:
When used as a modifier, the new
keyword explicitly hides a member
inherited from a base class. When you
hide an inherited member, the derived
version of the member replaces the
...
1
vote
3answers
210 views
Practical usage of new (modifier) functions?
What's the Practical usage of new (modifier) functions?
0
votes
1answer
16 views
How to determine the modifiers for a method or field in Eclipse JDT?
I am writing some simple AST visitors for the Eclipse JDT. I have a MethodVisitor and FieldVisitor class which each extend the ASTVisitor. Take the MethodVisitor for instance. In that class' Visit ...
0
votes
1answer
71 views
How to check if a key modifier is pressed (shift, ctrl, alt)?
I am building a UI with QT designer and want buttons to perform different actions with different modifiers. So I thought I could call functions with dynamic string properties that would perform the ...
0
votes
3answers
66 views
An interface in Java can have one and only one modifier which is public. Why are the rest not allowed? [closed]
Possible Duplicate:
Protected in Interfaces
The following code snippet shows that an interface in Java can have only one modifier which is public. No other modifiers (private and protected) ...
0
votes
1answer
99 views
contenteditable: Detect element changes when using row/column modifier
I used the following code from a previous posting to detect (most of) the changes to an element with attribute "contenteditable". But sadly it does not include the changes to tables that occur when ...
0
votes
1answer
91 views
On eclipse C++ code style single line format
I have a problem with eclipse's code style, here is the problem:
when I write an accessor or a modifier in C++ code, for example:
string GetName() { return name; }
then I press ctrl+shift+f and ...
0
votes
6answers
109 views
Java private field access
I came across the following "strange" feature today - if you have a reference to an object from the class A in the body of the class A you can access the private fields of this object - i.e:
public ...
0
votes
3answers
261 views
Bash modifiers in script
If I run the following in a bash shell:
./script /path/to/file.txt
echo !$:t
it outputs file.txt and all is good.
If in my script I have:
echo $1:t
it outputs /path/to/file.txt:t
How can I get ...
0
votes
1answer
316 views
get modifierFlags in keyDown event without pressing non-modifier key along with it!
I have subclassed NSWindow in a NSDocument application in order to receive keyDown events.
I have used the following code in my subclasss...
- (void)keyDown:(NSEvent *)theEvent {
...
0
votes
1answer
27 views
MenuKey functionality in OSX 10.5 and 10.6?
I have an OLD mac C/C++ program that I'm maintaining. It's still based on rsrc files and OS 9 system calls. (Yes, yes, I know. I'm TRYING to drag my company into the 21st century, but the other ...
0
votes
1answer
319 views
default values/modifiers in postgres?
I've problem with default modifiers on postgres 8.4. (I think version is its not important)
I've debian ubuntu. When Im creating migrations on rails AR:
class CreateUserMails < ...
0
votes
2answers
45 views
based on what logical reasons, virtual and new modifiers have diffrent results in inheritance and polymorphism issues?
I know that when we have a virtual function in our own base class, then by overriding it in a derived class and considering casting when variable declaration, we have different result with comparison ...
0
votes
2answers
728 views
Modifier Key state
I have a tiny (rikiki) problem in SWT ...
I am making a small class extending org.eclipse.swt.widgets.Composite and which is supposed to be nested in an RCP app ...
In this small class I have ...
0
votes
5answers
2k views
php global variable modifier not working
I'm using the basic php example for the global modifier, and it doesn't work for me :-|
$a = 1;
$b = 2;
function Sum()
{
global $a, $b;
$b = $a + $b;
}
Sum();
echo "***: ".$b;
Here is ...
-3
votes
1answer
110 views
how can i print out the type, size and range of a java data type ? esp those wtih modifiers?
Currently i can print out the type size and range of a;; primitive java data types except bollean using the following method.
public class sizJ {
public static void display(Class<?> type, ...