コンテンツにスキップ

検索結果

(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示
  • るときに呼び出されるのがデストラクタです。 class Cat { public: Cat() { std::cout << "Cat is created" << std::endl; } ~Cat() { std::cout << "Cat is destroyed" << std::endl;…
    15キロバイト (1,609 語) - 2024年5月17日 (金) 21:41
  • CatクラスとDogクラスではそれをオーバーライドして独自の動作を定義しています。それぞれのインスタンスを生成してメソッドを呼び出すと、適切なサウンドが表示されます。 class Person { String name int age void sayHello()…
    92キロバイト (12,134 語) - 2024年2月5日 (月) 00:26
  • def check_name(name = nil) if name && name.length > 0 puts "名前は#{name}です" else puts "名前が未入力です" end end check_name() # => "名前が未入力です" check_name("") # =>…
    275キロバイト (36,725 語) - 2024年3月14日 (木) 06:00
  • World(str) 9(int) {'cat': 'tama', 'dog': 'pochi', 'year': 1776}(dict) cat(str) tama(str) dog(str) pochi(str) year(str) 1776(int) {'bird', 'cat', 'dog'}(set)…
    40キロバイト (5,132 語) - 2024年6月27日 (木) 05:23
  • コード例 void main() { final cat = "Miku"; // 猫の名前 print("The name of the cat is ${cat} \n"); } 実行結果 The name of the cat is Miku 下記コードのように/*と*/で文を囲むと2行以上をコメントにできます。…
    54キロバイト (7,069 語) - 2024年11月8日 (金) 23:02
  • zroot/vm/$VM_NAME # 開発者用ネットワーク設定 ifconfig tap1 create ifconfig bridge1 create ifconfig bridge1 addm igb0 addm tap1 up # VMの起動設定 cat > /vm/config/${VM_NAME}.conf…
    39キロバイト (3,600 語) - 2024年11月9日 (土) 23:36
  • __construct($name) { parent::__construct($name); $this->sound = "Woof!"; } public function makeSound() { echo $this->name . " says " . $this->sound; } } class Cat
    74キロバイト (10,058 語) - 2023年11月28日 (火) 06:20
  • method naku() { print "ワン" } } class cat { method naku() { print "ニャー" } } BEGIN { pochi = dog.new() mike = cat.new() print "ポチが鳴くよ。" pochi.naku() print…
    13キロバイト (1,936 語) - 2022年7月7日 (木) 08:04
  • NO_INPUT_PROMPT = r'<s>\n以下は、タスクを説明する指示です。要求を適切に満たす応答を書きなさい。\n[SEP]\n指示:\n{instruction}\n[SEP]\n応答:\n' USER_NAME = "User" ASSISTANT_NAME = "Assistant"…
    12キロバイト (1,504 語) - 2023年9月22日 (金) 13:56
  • name) case type when :cat Cat.new(name) when :dog Dog.new(name) end end end class Cat def initialize(name) @name = name end def speak puts "#{@name}がニャーと鳴きました。"…
    36キロバイト (5,100 語) - 2024年3月8日 (金) 01:22
  • ] [--color=when] [-D format] [file ...] % cat -@ cat: illegal option -- @ usage: cat [-belnstuv] [file ...] 詳しくは man を引くべきですが、思い出すためには役立つことがあります。…
    74キロバイト (10,824 語) - 2024年4月21日 (日) 23:51
  • -l' と同じ ファイル名の一部を入力し、タブキーを押すと残りを自動補完します。 使用方法 ファイル名の先頭数文字を入力し、タブキーを押す 例 % cat /etc/pas[TAB] # '/etc/passwd' に自動補完 シェル内で直接数学的な計算ができます。 使用方法 @ 変数名 = 式 例…
    4キロバイト (563 語) - 2024年7月9日 (火) 03:34
  • dog") case is Cat: print("It's a cat") default: print("It's something else") } } この例では、animals配列の要素がDog型かCat型かをテストしています。is演算子を使用することで、Dog型かCat型かどうかを簡単にテストすることができます。…
    39キロバイト (5,052 語) - 2024年1月30日 (火) 12:29
  • 最後に、新しいCatオブジェクトを作成して、メソッドの動作を確認します。 myCat = Cat:new{} myCat:makeSound() -- Prints "Meow" myCat:scratch() -- Prints "I am scratching stuff!" この例では、Cat
    59キロバイト (8,609 語) - 2024年1月24日 (水) 10:18
  • をそのまま実行してみます。 hello.crを用意します。 hello.cr puts 'Hello, World!' コマンドラインでの操作 % cat hello.cr puts 'Hello, World!' % crystal hello.cr In hello.cr:1:6 1 | puts…
    97キロバイト (12,114 語) - 2024年11月6日 (水) 07:33
  • の名前で保存します(カレントディレクトリーに hello.kt がある場合)。 タブと空白には区別され、先頭の空白8つ分はタブです。 コマンドラインでの操作は tcshの場合 % cat hello.kt fun main() { println("Hello world!") } % make hello.jar kotlinc…
    5キロバイト (723 語) - 2022年11月20日 (日) 06:47
  • --color=always "pattern" 適切なストリーム処理 エラー出力の制御 終了ステータスの確認 # パイプラインでの効果的な使用 cat file.txt | grep "pattern" | sort | uniq > results.txt .gitignoreパターンの活用 コードレビュー用の…
    9キロバイト (959 語) - 2024年10月22日 (火) 02:54
  • /usr/bin/env perl use v5.30.0; say "Hello, World"; say "Hello, Perl"; コマンドラインでの実行 % cat > hello.pl #!/usr/bin/env perl use v5.30.0; say "Hello, World"; say "Hello…
    22キロバイト (2,956 語) - 2024年6月12日 (水) 21:54
  • output stdout sqlite> .quit $ cat periodic.txt PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE elements( number ,name ,symbol ); INSERT INTO elements…
    35キロバイト (7,228 語) - 2024年11月1日 (金) 04:45
  • echo "Woof!" method makeSound(c: Cat) = echo "Meow!" let animals = @[ Dog(name: "Buddy", breed: "Labrador"), Cat(name: "Whiskers", color: "Orange") ] for…
    51キロバイト (6,314 語) - 2024年10月24日 (木) 02:09
(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示